Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface INamed

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;
    ...
}

Hierarchy

  • INamed

Index

Properties

Properties

name

name: string

The object's humand-readable name.

Generated using TypeDoc