UNPKG

@solidskills/types

Version:

Solidskills typings

10 lines (9 loc) 308 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; notes: SlsNote; }