UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

8 lines (7 loc) 325 B
import { type UUID } from '../../../dt/index.js'; import type { UCInput, UCInputDef } from '../../input.js'; import { type UCInputFieldValue } from '../../input-field.js'; export interface AggregateInput extends UCInput { id: UCInputFieldValue<UUID>; } export declare const AggregateInputDef: UCInputDef<AggregateInput>;