UNPKG

react-application-core

Version:

A react-based application core for the business applications.

22 lines (21 loc) 762 B
import { IRefreshOnUpdateWrapper, ISelectedElementClassNameWrapper } from '../definitions.interface'; import { IGenericComponentProps } from './generic-component-definition.interface'; import { IPresetsStickyEntity } from './sticky-definition.interface'; /** * @presets-entity * @stable [20.05.2020] */ export interface IPresetsSelectedElementEntity extends ISelectedElementClassNameWrapper, IRefreshOnUpdateWrapper { } /** * @generic-entity * @stable [20.05.2020] */ export interface IGenericSelectedElementEntity extends IPresetsSelectedElementEntity, IPresetsStickyEntity { } /** * @props * @stable [20.05.2020] */ export interface ISelectedElementComponentProps extends IGenericComponentProps, IGenericSelectedElementEntity { }