Your chosen grammar.

interface Grammar {
    definition: string;
    syntax: "regex" | "lark";
}

Properties

Properties

definition: string

The grammar definition.

syntax: "regex" | "lark"

The syntax of the grammar definition. One of lark or regex.