@cmk/fe_utils
Version:
frontend utility library
14 lines (12 loc) • 404 B
TypeScript
import { DatabaseFieldDefinitionType } from './databaseDefinitionType';
export type EntityType = {
entity_id: number;
entity_name: string;
entity_label?: string;
};
export type EntityPayloadType = EntityType & {
owner_user_id?: number;
html_project_id: string;
};
export type EntityTypeKeys = keyof EntityType;
export declare const EntityDbFieldsDefs: DatabaseFieldDefinitionType[];