UNPKG

@voiceflow/base-types

Version:

Voiceflow base project types

16 lines 352 B
export declare enum DomainStatus { DESIGN = "DESIGN", REVIEW = "REVIEW", COMPLETE = "COMPLETE" } export interface Domain { id: string; live: boolean; name: string; status?: DomainStatus; topicIDs: string[]; updatedAt?: string; rootDiagramID: string; updatedBy?: number; } //# sourceMappingURL=domain.d.ts.map