interface IRawRule {
    $vscodeTextmateLocation?: ILocation;
    applyEndPatternLast?: boolean;
    begin?: string;
    beginCaptures?: IRawCaptures;
    captures?: IRawCaptures;
    contentName?: string;
    end?: string;
    endCaptures?: IRawCaptures;
    id?: RuleId;
    include?: string;
    match?: string;
    name?: string;
    patterns?: IRawRule[];
    repository?: IRawRepository;
    while?: string;
    whileCaptures?: IRawCaptures;
}

Hierarchy (view full)

Properties

$vscodeTextmateLocation?: ILocation
applyEndPatternLast?: boolean
begin?: string
beginCaptures?: IRawCaptures
captures?: IRawCaptures
contentName?: string
end?: string
endCaptures?: IRawCaptures
id?: RuleId
include?: string
match?: string
name?: string
patterns?: IRawRule[]
repository?: IRawRepository
while?: string
whileCaptures?: IRawCaptures