right-angled
Version:
Lightweight and easy to use angular data grids. Integrates with your markup and styles rather than generating its own.
16 lines • 617 B
TypeScript
import { RTFiltersService } from '../../filters/filters.service';
/**
* Base contract for state management services.
*/
export declare abstract class RTStateService {
/**
* This method must get required state from passed filterService instance and persist it in any way.
* @param filtersService service to request state.
*/
abstract persistState(filtersService: RTFiltersService): void;
/**
* This method will be called during {@link RTList} initialization and must return settings saved previously.
*/
abstract getState(): any;
}
//# sourceMappingURL=state.service.d.ts.map