react-application-core
Version:
A react-based application core for the business applications.
21 lines (20 loc) • 570 B
TypeScript
import { IStickyElementClassNameWrapper } from '../definitions.interface';
import { IGenericComponentProps } from './generic-component-definition.interface';
/**
* @presets-entity
* @stable [20.05.2020]
*/
export interface IPresetsStickyEntity extends IStickyElementClassNameWrapper {
}
/**
* @generic-entity
* @stable [20.05.2020]
*/
export interface IGenericStickyEntity extends IPresetsStickyEntity {
}
/**
* @props
* @stable [20.05.2020]
*/
export interface IStickyComponentProps extends IGenericComponentProps, IGenericStickyEntity {
}