import { ElementContracts } from './element-contracts'; import { SharedContracts } from './shared-contracts'; export declare namespace ContentTypeContracts { interface IContentTypeContract { id: string; name: string; codename: string; last_modified: string; elements: ElementContracts.IContentTypeElementContract[]; } interface IContentTypeListResponseContract { types: IContentTypeContract[]; pagination: SharedContracts.IPaginationModelContract; } interface IViewContentTypeResponseContract extends IContentTypeContract { } interface IDeleteContentTypeResponseContract { } interface IAddContentTypeResponseContract extends IContentTypeContract { } }