UNPKG

@etsoo/appscript

Version:

Applications shared TypeScript framework

11 lines (10 loc) 258 B
import { DataTypes, IdType } from "@etsoo/shared"; /** * Dto with id, label and primary field */ export type IdLabelPrimaryDto<T extends IdType = number> = DataTypes.IdLabelItem<T> & { /** * Is primary */ readonly isPrimary?: boolean; };