kentico-cloud-delivery
Version:
Official Kentico Cloud Delivery SDK
21 lines (20 loc) • 689 B
TypeScript
import { IElementContract } from './shared/elements.interface';
import { IPaginationContract } from './shared/ipagination.interface';
export declare namespace TypeContracts {
interface IContentTypeSystemAttributesContract {
id: string;
name: string;
codename: string;
last_modified: Date;
}
interface IContentTypeContract {
system: IContentTypeSystemAttributesContract;
elements: IElementContract;
}
interface IListContentTypeContract {
types: IContentTypeContract[];
pagination: IPaginationContract;
}
interface IViewContentTypeContract extends IContentTypeContract {
}
}