UNPKG

416 BTypeScriptView Raw
1/**
2 * Creates a database exclusion.
3 * Can be used on entity.
4 * Can create exclusions with composite columns when used on entity.
5 */
6export declare function Exclusion(expression: string): Function;
7/**
8 * Creates a database exclusion.
9 * Can be used on entity.
10 * Can create exclusions with composite columns when used on entity.
11 */
12export declare function Exclusion(name: string, expression: string): Function;