drapcode-constant
Version:
Drapcode Constants
50 lines (49 loc) • 1.95 kB
TypeScript
export declare const EQUALS = "EQUALS";
export declare const IS_NOT_NULL = "IS_NOT_NULL";
export declare const IS_NULL = "IS_NULL";
export declare const LIKE = "LIKE";
export declare const IN_LIST = "IN_LIST";
export declare const NOT_IN_LIST = "NOT_IN_LIST";
export declare const LESS_THAN = "LESS_THAN";
export declare const GREATER_THAN = "GREATER_THAN";
export declare const LESS_THAN_EQUALS_TO = "LESS_THAN_EQUALS_TO";
export declare const GREATER_THAN_EQUALS_TO = "GREATER_THAN_EQUALS_TO";
export declare const BETWEEN = "BETWEEN";
export declare const NOT_EQUAL = "NOT_EQUAL";
export declare const IS_BOOLEAN_TRUE = "IS_BOOLEAN_TRUE";
export declare const IS_BOOLEAN_FALSE = "IS_BOOLEAN_FALSE";
export declare const CURRENT_USER = "CURRENT_USER";
export declare const CURRENT_TENANT = "CURRENT_TENANT";
export declare const CURRENT_SETTINGS = "CURRENT_SETTINGS";
export declare const CURRENT_SUB_TENANT = "CURRENT_SUB_TENANT";
export declare const CURRENT_TIME = "CURRENT_TIME";
export declare const CURRENT_DATE = "CURRENT_DATE";
export declare const CURRENT_DATE_TIME = "CURRENT_DATE_TIME";
export declare const HOUR = "HOUR";
export declare const DAY = "DAY";
export declare const WEEK = "WEEK";
export declare const MONTH = "MONTH";
export declare const YEAR = "YEAR";
export declare const CURRENT_MONTH = "CURRENT_MONTH";
export declare const CURRENT_YEAR = "CURRENT_YEAR";
export declare const DateTimeUnit: string[];
export declare const DateConstant: string[];
export declare const DateRangeConstant: string[];
export declare const CURRENTS: string[];
export declare const EQUALS_OR_IGNORE = "EQUALS_OR_IGNORE";
export declare const currentSubTenantObj: {
name: string;
value: string;
};
export declare const currentTenantObj: {
name: string;
value: string;
};
export declare const currentSettingObj: {
name: string;
value: string;
};
export declare const currentUserObj: {
name: string;
value: string;
};