export interface IContext {
    worksheet: string;
    table: any;
}
export type ContextType = 'worksheet' | 'table';
