Interface BackgroundTokenizerEvents

interface BackgroundTokenizerEvents {
    update: ((e) => void);
}

Properties

Properties

update: ((e) => void)

Fires whenever the background tokeniziers between a range of rows are going to be updated.

Type declaration

    • (e): void
    • Fires whenever the background tokeniziers between a range of rows are going to be updated.

      Parameters

      • e: {
            data: {
                first: number;
                last: number;
            };
        }

        An object containing two properties, first and last, which indicate the rows of the region being updated.

        • data: {
              first: number;
              last: number;
          }
          • first: number
          • last: number

      Returns void

Param: e

An object containing two properties, first and last, which indicate the rows of the region being updated.

Generated using TypeDoc