@contentstack/management
Version:
The Content Management API is used to manage the content of your Contentstack account
12 lines (10 loc) • 382 B
TypeScript
import { AnyProperty } from '../../utility/fields';
import { Pagination } from '../../utility/pagination';
export interface Compare {
all(params: Pagination & AnyProperty): Promise<AnyProperty>
contentTypes(params: Params) : Promise<AnyProperty>
globalFields(params: Params) : Promise<AnyProperty>
}
export type Params = {
uid: string
} | Pagination & AnyProperty