@contentstack/management
Version:
The Content Management API is used to manage the content of your Contentstack account
15 lines (11 loc) • 415 B
TypeScript
import { AnyProperty, SystemFields } from "../../utility/fields";
import { Queryable, SystemFunction } from "../../utility/operations";
export interface Label extends SystemFields, SystemFunction<Label> {
}
export interface Labels extends Queryable<Label, {label: LabelData}> {
}
export interface LabelData extends AnyProperty {
name: string
content_types: Array<string>
parent?: Array<string>
}