RenaiApp/src/main/entities/library/name-entity-interface.d.ts

15 lines
258 B
TypeScript

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