@contentstack/management
Version:
The Content Management API is used to manage the content of your Contentstack account
15 lines (11 loc) • 453 B
TypeScript
import { AnyProperty, SystemFields } from "../../utility/fields";
import { Queryable, SystemFunction } from "../../utility/operations";
export interface Variant extends SystemFields, SystemFunction<Variant> {
}
export interface Variants extends Queryable<Variant, {variants: VariantData}> {
fetchByUIDs(data: Array<string>): Promise<Response>
}
export interface VariantData extends AnyProperty {
name: string
parent?: Array<string>
}