Represents an entity with an identifier.

interface IEntity {
    id: string | number;
}

Properties

Properties

id: string | number