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

15 lines
250 B
TypeScript

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