react-application-core
Version:
A react-based application core for the business applications.
20 lines (19 loc) • 519 B
TypeScript
/// <reference types="react" />
import { GenericComponent } from '../base/generic.component';
import { IDrawerProps } from '../../definition';
/**
* @component-impl
* @stable [29.05.2020]
*/
export declare class Drawer extends GenericComponent<IDrawerProps> {
/**
* @stable [29.05.2020]
* @returns {JSX.Element}
*/
render(): JSX.Element;
/**
* @stable [02.06.2020]
* @returns {IDrawerProps}
*/
protected get componentsSettingsProps(): IDrawerProps;
}