UNPKG

pip-services3-commons-node

Version:
19 lines (18 loc) 429 B
/** @module data */ /** * Interface for data objects that have human-readable names. * * ### Example ### * * export class MyData implements IStringIdentifiable, INamed { * public id: string; * public name: string; * public field1: string; * public field2: number; * ... * } */ export interface INamed { /** The object's humand-readable name. */ name: string; }