Represents the data entry for custom data.

interface DataEntry<T = unknown> {
    perms?: null | PermissionType[];
    value?: T;
}

Type Parameters

  • T = unknown

Properties

Properties

perms?: null | PermissionType[]
value?: T