Ace API Reference
    Preparing search index...

    Type Alias BehaviorAction

    BehaviorAction: (
        state: string | string[],
        action: string,
        editor: Ace.Editor,
        session: Ace.EditSession,
        text: string | Ace.Range,
    ) =>
        | ({ selection: number[]; text: string } | Ace.Range) & {
            [key: string]: any;
        }
        | undefined

    Type declaration

      • (
            state: string | string[],
            action: string,
            editor: Ace.Editor,
            session: Ace.EditSession,
            text: string | Ace.Range,
        ):
            | ({ selection: number[]; text: string } | Ace.Range) & {
                [key: string]: any;
            }
            | undefined
      • Parameters

        Returns
            | ({ selection: number[]; text: string } | Ace.Range) & {
                [key: string]: any;
            }
            | undefined