UNPKG

@stackbit/types

Version:

Types for Stackbit config and Content Source Interface

16 lines (13 loc) 375 B
import { RequiredBy } from './utility-types'; import { Document } from '.'; export type DocumentVersion = { id: string; documentId: string; srcType: string; srcProjectId: string; createdAt: string; label?: string; createdBy?: string; document?: Document; }; export type DocumentVersionWithDocument = RequiredBy<DocumentVersion, 'document'>;