@umbraco/headless-client
Version:
Node.js client library for the Umbraco Headless APIs
26 lines (25 loc) • 442 B
TypeScript
/**
* 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"
}