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