@opentui/core
Version:
OpenTUI is a TypeScript library for building terminal user interfaces (TUIs)
39 lines (38 loc) • 1.08 kB
TypeScript
/**
* This file contains the configuration for the defaulttree-sitter parsers.
* It is used by ./assets/update.ts to generate the default-parsers.ts file.
* For changes here to be reflected in the default-parsers.ts file, you need to run `bun run ./assets/update.ts`
*/
declare const _default: {
parsers: ({
filetype: 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;
typescript: string;
ts: string;
markdown: string;
md: string;
};
};
})[];
};
export default _default;