UNPKG

@solidskills/types

Version:

Solidskills typings

11 lines (10 loc) 333 B
import { DocumentReference, Timestamp } from "@firebase/firestore-types"; import { SlsNote } from "./sls-note"; export interface SlsUserJobApplication { job: DocumentReference; user: DocumentReference; status: DocumentReference; creationDate: Timestamp | Date; updateDate: Timestamp | Date; notes: SlsNote; }