UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

11 lines (10 loc) 479 B
import { type DirPath } from '../../../../dt/index.js'; import type { UCInput, UCInputDef, UCInputFieldValue } from '../../../../uc/index.js'; export interface AppInput extends UCInput { appsPath: UCInputFieldValue<DirPath>; } export declare const AppInputFieldsDef: UCInputDef<AppInput>['fields']; export interface ProductInput extends UCInput { productsPath: UCInputFieldValue<DirPath>; } export declare const ProductInputFieldsDef: UCInputDef<ProductInput>['fields'];