@opentui/core
Version:
OpenTUI is a TypeScript library on a native Zig core for building terminal user interfaces (TUIs)
13 lines (12 loc) • 465 B
TypeScript
export interface UpdateOptions {
/** Path to parsers-config.json */
configPath: string;
/** Directory where .wasm and .scm files will be downloaded */
assetsDir: string;
/** Path where the generated TypeScript file will be written */
outputPath: string;
}
declare function main(options?: Partial<UpdateOptions>): Promise<void>;
export declare function runUpdateAssetsCli(): Promise<void>;
export { main as updateAssets };