@opentui/core
Version:
OpenTUI is a TypeScript library on a native Zig core for building terminal user interfaces (TUIs)
54 lines (53 loc) • 1.51 kB
TypeScript
/**
* This file contains the configuration for the defaulttree-sitter parsers.
* It is used by ./assets/update.ts to generate the default parser runtime files and asset manifest.
* For changes here to be reflected in generated files, you need to run `bun run ./assets/update.ts`
*/
declare const _default: {
parsers: ({
filetype: string;
aliases: string[];
wasm: string;
queries: {
highlights: string[];
injections?: undefined;
};
injectionMapping?: undefined;
} | {
filetype: string;
wasm: string;
queries: {
highlights: string[];
injections: string[];
};
injectionMapping: {
nodeTypes: {
inline: string;
pipe_table_cell: string;
};
infoStringMap: {
javascript: string;
js: string;
jsx: string;
javascriptreact: string;
typescript: string;
ts: string;
tsx: string;
typescriptreact: string;
markdown: string;
md: string;
};
};
aliases?: undefined;
} | {
filetype: string;
wasm: string;
queries: {
highlights: string[];
injections?: undefined;
};
aliases?: undefined;
injectionMapping?: undefined;
})[];
};
export default _default;