@syncfusion/ej2-react-layouts
Version:
A package of Essential JS 2 layout pure CSS components such as card and avatar. The card is used as small container to show content in specific structure, whereas the avatars are icons, initials or figures representing particular person. for React
27 lines (26 loc) • 947 B
TypeScript
import { ComplexBase } from '@syncfusion/ej2-react-base';
import { PanePropertiesModel } from '@syncfusion/ej2-layouts';
export interface PanePropertiesDirTypecast {
content?: string | Function | any;
}
/**
* PanesDirective` represent a panes of the react splitter.
* It must be contained in a Splitter component(`SplitterComponent`).
* ```tsx
* <SplitterComponent>
* <PaneSettingsDirective>
* <PaneDirective size={this.Pane1Size}></PaneDirective>
* <PaneDirective size={this.Pane2Size}></PaneDirective>
* <PaneSettingsDirective>
* </SplitterComponent>
* ```
*/
export declare class PaneDirective extends ComplexBase<PanePropertiesModel | PanePropertiesDirTypecast & {
children?: React.ReactNode;
}, PanePropertiesModel | PanePropertiesDirTypecast> {
static moduleName: string;
}
export declare class PanesDirective extends ComplexBase<{}, {}> {
static propertyName: string;
static moduleName: string;
}