AdminLTE/plugins/filterizr/types/interfaces/BaseOptions.d.ts
REJack e3888aee85
created new gallery page
- added filterizr to plugins
- created gallery demo
2019-08-28 11:42:16 +02:00

21 lines
624 B
TypeScript
Executable file

import { SpinnerOptions } from './SpinnerOptions';
import { RawOptionsCallbacks } from './RawOptionsCallbacks';
import { Layout } from '..';
export interface BaseOptions {
animationDuration?: number;
callbacks?: RawOptionsCallbacks;
controlsSelector?: string;
delay?: number;
delayMode?: 'alternate' | 'progressive';
easing?: string;
filterOutCss?: object;
filterInCss?: object;
gridItemsSelector?: string;
gutterPixels?: number;
layout?: Layout;
multifilterLogicalOperator?: 'or' | 'and';
searchTerm?: string;
setupControls?: boolean;
spinner?: SpinnerOptions;
}