libmodulor
Version:
A TypeScript library to create platform-agnostic applications
15 lines (14 loc) • 441 B
TypeScript
import type { ErrorMessage } from '../../../dt/index.js';
import type { Worker } from '../../../std/index.js';
import type { AppTesterUCDRef } from '../../ctx.js';
export interface Input {
ucdRef: AppTesterUCDRef;
}
export interface Output {
errors: ErrorMessage[];
}
export declare class UCDefChecker implements Worker<Input, Promise<Output>> {
private output;
constructor();
exec({ ucdRef }: Input): Promise<Output>;
}