@grapecity/spread-sheets-designer-react
Version:
SpreadJS Designer React Wrapper Components.
17 lines (14 loc) • 517 B
TypeScript
import * as React from 'react';
// @ts-ignore
import * as GC from '@grapecity/spread-sheets-designer';
import {Spread} from '@grapecity/spread-sheets';
import * as CSS from 'csstype';
export interface DesignerProp {
config? : GC.Spread.Sheets.Designer.IDesignerConfig;
styleInfo? : CSS.Properties;
spreadOptions? : Spread.Sheets.IWorkBookDefaultOptions;
designerInitialized?: Function;
children?: React.ReactNode;
}
export declare class Designer extends React.Component<DesignerProp, any> {
}