@netgrif/components-core
Version:
Netgrif Application engine frontend core Angular library
11 lines (10 loc) • 347 B
TypeScript
import { Predicate } from './predicate';
import { Query } from '../query/query';
/**
* The simples type of `Predicate`. Represents a leaf node in the predicate tree.
*/
export declare class ElementaryPredicate extends Predicate {
protected _query: Query;
constructor(_query: Query, initiallyVisible?: boolean);
get query(): Query;
}