RenaiApp/src/shared/types/entity-api/base/name.d.ts

15 lines
259 B
TypeScript

/**
* This entity describes a single name of an entity with multiple names.
*/
interface NameInterface {
/**
* the name
*/
name: string;
/**
* the entity to which the names belong
*/
entity: Promise<MultiNamedInterface> | Identifier;
}