libmodulor
Version:
A TypeScript library to create platform-agnostic applications
7 lines (6 loc) • 303 B
TypeScript
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'];