Interface NodeAsyncHostOptions
Package: grammarkdown
Properties
allowUris
Declaration
allowUris?: false;
Property Value
false
ignoreCase
Indicates whether the host is case-insensitive (true
) or case-sensitive (false
).
Declaration
ignoreCase?: boolean;
Property Value
boolean
knownGrammars
A set of known grammars in the form { "name": "path" }
Declaration
knownGrammars?: Record<string, string>;
Property Value
Record<string, string>
readFile
Declaration
readFile?: ReadFileCallback | false;
Property Value
ReadFileCallback | false
useBuiltinGrammars
Indicates whether to include builtin grammars in the set of known grammars.
Declaration
useBuiltinGrammars?: boolean;
Property Value
boolean
writeFile
Declaration
writeFile?: WriteFileCallback | false;
Property Value
WriteFileCallback | false