@solidskills/types
Version:
Solidskills typings
14 lines (11 loc) • 434 B
text/typescript
import { DocumentReference, Timestamp } from "@firebase/firestore-types";
import { SlsNote } from "./sls-note";
export interface SlsUserJobApplication {
// firestore references (https://firebase.google.com/docs/reference/js/firebase.firestore.DocumentReference)
job: DocumentReference;
user: DocumentReference;
status: DocumentReference;
creationDate: Timestamp | Date;
updateDate: Timestamp | Date;
notes: SlsNote;
}