UNPKG

react-application-core

Version:

A react-based application core for the business applications.

15 lines (14 loc) 377 B
import { IXWrapper, IYWrapper } from '../definitions.interface'; import { IFluxEntity } from './flux-definition.interface'; /** * @presets-entity * @stable [08.05.2020] */ export interface IPresetsXYEntity extends IXWrapper, IYWrapper { } /** * @flux-entity * @stable [08.05.2020] */ export interface IFluxXYEntity extends IFluxEntity<IPresetsXYEntity> { }