Ace API Reference
    Preparing search index...

    Type Alias HighlightRule

    HighlightRule: (
        | { defaultToken: string }
        | { include: string }
        | { todo: string }
        | {
            caseInsensitive?: boolean;
            comment?: string;
            next?: string | (() => void);
            nextState?: string;
            push?: string;
            regex: string | RegExp;
            token: string | string[] | ((value: string) => string);
        }
    ) & { [key: string]: any }