@solidskills/types
Version:
Solidskills typings
16 lines (15 loc) • 447 B
TypeScript
import { DocumentReference } from '@firebase/firestore-types';
export interface SlsMatching {
user: DocumentReference;
job: DocumentReference;
score: number;
scores?: {
[questionId: string]: number;
};
userJobApplication?: DocumentReference;
proposalDate?: Date;
scoreNotificationDate?: Date;
consultedWithScore?: number;
notificationToSend?: boolean;
toBeCalculated?: boolean;
}