@contentstack/management
Version:
The Content Management API is used to manage the content of your Contentstack account
18 lines (15 loc) • 343 B
TypeScript
export interface Response {
notice: string
}
export interface ContentstackCollection<T> extends Response {
items: T[]
count: number
}
export interface EntryCollection<T> extends ContentstackCollection<T> {
schema?: object
content_Type?: object
}
export type AssetResponseType =
| 'arraybuffer'
| 'blob'
| 'stream';