@opentui/core
Version:
OpenTUI is a TypeScript library for building terminal user interfaces (TUIs)
12 lines (11 loc) • 404 B
TypeScript
#!/usr/bin/env bun
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 { main as updateAssets };