ng2-qgrid
Version:
Angular Grid
21 lines (16 loc) • 466 B
TypeScript
import { Model } from '../infrastructure/model';
export declare class Entry {
constructor(element: HTMLElement, sheets: Map<any, any>);
element: HTMLElement;
sheets: Map<any, any>;
list: Set<any>;
class(key: string, style: string): void;
}
export declare class Monitor {
constructor(model: Model);
entries: Entry[];
newSheets: Map<any, any>;
oldSheets: Map<any, any>;
enter(): (key: string, style: string) => void;
exit(): void;
}