UNPKG

@mintlify/validation

Version:

Validates mint.json files

17 lines (16 loc) 416 B
export type ChangedFilesStatus = 'added' | 'removed' | 'modified'; export type PreviewType = { mainDeploymentId?: string; changedFiles?: ChangedFile[]; }; export type DeploymentPreviewType = PreviewType & { mainDeployment?: { subdomain: string; customDomains: string[]; basePath?: string; }; }; export type ChangedFile = { path: string; status: ChangedFilesStatus; };