@solidskills/types
Version:
Solidskills typings
16 lines (15 loc) • 423 B
TypeScript
import { DocumentReference } from "@firebase/firestore-types";
import { SlsAddress } from "./sls-address";
export interface SlsCompany {
name: string;
siret: string;
address: SlsAddress;
companyType: DocumentReference;
companySize: DocumentReference;
description: string;
note: string;
figureUrl: string;
substrings: string[];
isAddressHeadOffice: boolean;
domainName: string;
}