mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-29 00:16:39 +01:00
10 lines
295 B
TypeScript
10 lines
295 B
TypeScript
type DefaultValueContext = {
|
|
row: Row;
|
|
ref: FirebaseFirestore.DocumentReference;
|
|
storage: firebasestorage.Storage;
|
|
db: FirebaseFirestore.Firestore;
|
|
auth: firebaseauth.BaseAuth;
|
|
logging: RowyLogging;
|
|
};
|
|
type DefaultValue = (context: DefaultValueContext) => "PLACEHOLDER_OUTPUT_TYPE";
|