libmodulor
Version:
A TypeScript library to create platform-agnostic applications
10 lines (9 loc) • 426 B
TypeScript
import type { AppName } from '../../../../app/index.js';
import { type UCDef, type UCInputFieldValue, type UCName } from '../../../../uc/index.js';
import { type AppInput } from '../lib/io.js';
export interface TestAppInput extends AppInput {
appName: UCInputFieldValue<AppName>;
only: UCInputFieldValue<UCName>;
updateSnapshots: UCInputFieldValue<boolean>;
}
export declare const TestAppUCD: UCDef<TestAppInput>;