UNPKG

askeroo

Version:

A modern CLI prompt library with flow control, history navigation, and conditional prompts

21 lines 694 B
/** * RuntimeFactory - Creates and configures runtime instances * * Handles runtime instantiation, API binding, and dependency injection. * Manages the lifecycle of runtime creation and registration. */ import { type RuntimeAPI } from "./runtime-context.js"; import { UI } from "../types/index.js"; export declare class RuntimeFactory { /** * Create a new runtime instance with full configuration */ static createRuntime(ui: UI): RuntimeAPI; /** * Create a runtime with custom configuration options */ static createRuntimeWithOptions(ui: UI, options?: { autoRegister?: boolean; }): RuntimeAPI; } //# sourceMappingURL=runtime-factory.d.ts.map