UNPKG

262 BTypeScriptView Raw
1import { ScopeFindOptions } from './scope-find-options';
2export interface ScopeTableOptions<TCreationAttributes extends {}, TModelAttributes extends {}> {
3 [scopeName: string]: ScopeFindOptions<TCreationAttributes, TModelAttributes> | Function | undefined;
4}