libmodulor
Version:
A TypeScript library to create platform-agnostic applications
11 lines (10 loc) • 598 B
TypeScript
import { WordingManager } from '../../i18n/index.js';
import type { UCClientConfirmManager } from '../client.js';
import type { UCDef } from '../def.js';
import type { UCInput } from '../input.js';
import type { UCOPIBase } from '../opi.js';
export declare class WebUCClientConfirmManager implements UCClientConfirmManager {
private wordingManager;
constructor(wordingManager: WordingManager);
exec<I extends UCInput | undefined = undefined, OPI0 extends UCOPIBase | undefined = undefined, OPI1 extends UCOPIBase | undefined = undefined>(ucd: UCDef<I, OPI0, OPI1>): Promise<boolean>;
}