UNPKG

447 BTypeScriptView Raw
1import { ScopeTableOptions } from './scope-table-options';
2import { ScopesOptionsGetter } from './scope-options';
3/**
4 * Decorator for defining Model scopes
5 */
6export declare function Scopes(scopesGetter: ScopesOptionsGetter): Function;
7/**
8 * Decorator for defining Model scopes
9 * @deprecated
10 */
11export declare function Scopes<TCreationAttributes, TModelAttributes>(scopes: ScopeTableOptions<TCreationAttributes, TModelAttributes>): Function;