UNPKG

@umbraco/headless-client

Version:
26 lines (25 loc) 609 B
export interface MediaTypeContentManagerRoot { mediatypes: MediaTypeContentManager[]; } export interface MediaTypeContentManager { alias: string; compositions: any[]; groups: GroupMediaTypeContentManager[]; name: string; _createDate: string; _id: string; _updateDate: string; _links: any; } export interface GroupMediaTypeContentManager { name: string; sortOrder: number; properties: PropertyMediaType[]; } export interface PropertyMediaType { alias: string; label: string; propertyEditorAlias: string; sortOrder: number; validation: any; }