Files
airllm-fork-nodejs/node_modules/node-llama-cpp/dist/utils/gbnfJson/terminals/GbnfBooleanValue.d.ts
2026-02-05 15:27:49 +08:00

8 lines
225 B
TypeScript

import { GbnfTerminal } from "../GbnfTerminal.js";
export declare class GbnfBooleanValue extends GbnfTerminal {
readonly value: boolean;
constructor(value: boolean);
getGrammar(): string;
resolve(): string;
}