First upload version 0.0.1
This commit is contained in:
18
node_modules/node-llama-cpp/dist/utils/gbnfJson/terminals/GbnfArray.d.ts
generated
vendored
Normal file
18
node_modules/node-llama-cpp/dist/utils/gbnfJson/terminals/GbnfArray.d.ts
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
import { GbnfTerminal } from "../GbnfTerminal.js";
|
||||
import { GbnfGrammarGenerator } from "../GbnfGrammarGenerator.js";
|
||||
import { GbnfJsonScopeState } from "../utils/GbnfJsonScopeState.js";
|
||||
export declare class GbnfArray extends GbnfTerminal {
|
||||
readonly items?: GbnfTerminal;
|
||||
readonly prefixItems?: GbnfTerminal[];
|
||||
readonly minItems: number;
|
||||
readonly maxItems?: number;
|
||||
readonly scopeState: GbnfJsonScopeState;
|
||||
constructor({ items, prefixItems, minItems, maxItems, scopeState }: {
|
||||
items?: GbnfTerminal;
|
||||
prefixItems?: GbnfTerminal[];
|
||||
minItems?: number;
|
||||
maxItems?: number;
|
||||
scopeState: GbnfJsonScopeState;
|
||||
});
|
||||
getGrammar(grammarGenerator: GbnfGrammarGenerator): string;
|
||||
}
|
||||
Reference in New Issue
Block a user