UNPKG

@umbraco/headless-client

Version:
26 lines (25 loc) 442 B
/** * Content Filter Properties. * @public */ export interface ContentFilterProperties { alias: string; value: string; match: ContentFilterMatch; } /** * Content Filter. * @public */ export interface ContentFilter { contentTypeAlias?: string; properties: ContentFilterProperties[]; } /** * Content Filter Match. * @public */ export declare enum ContentFilterMatch { Contains = "CONTAINS", Like = "LIKE" }