react-application-core
Version:
A react-based application core for the business applications.
14 lines (13 loc) • 341 B
TypeScript
import { IPartsWrapper, IPrefixWrapper } from '../definitions.interface';
/**
* @stable [03.02.2020]
*/
export interface IUniqueId {
fromName(cfg: IUniqueIdConfigEntity): string;
}
/**
* @config-entity
* @stable [03.02.2020]
*/
export interface IUniqueIdConfigEntity extends IPrefixWrapper, IPartsWrapper<string[]> {
}