UNPKG

163 BTypeScriptView Raw
1import Tabular from '../tabular';
2export interface ContainerEvents {
3 beforeLoad: () => void;
4 load: (data: Tabular) => void;
5 ready: () => void;
6}