Interface HostBaseOptions
Package: grammarkdown
Options used to configure a HostBase.
Properties
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>
useBuiltinGrammars
Indicates whether to include builtin grammars in the set of known grammars.
Declaration
useBuiltinGrammars?: boolean;
Property Value
boolean