Interface SearchDirectiveListeners<T>

interface SearchDirectiveListeners {
    autocomplete: ((arg0, arg1, arg2) => void);
    change: ((arg0, arg1) => void);
    close: (() => void);
    cursorchange: ((arg0, arg1, arg2) => void);
    datasetsempty: ((arg0, arg1, arg2) => void);
    open: (() => void);
    select: ((arg0, arg1, arg2) => void);
}

Type Parameters

  • T

Properties

autocomplete: ((arg0, arg1, arg2) => void)

Type declaration

    • (arg0, arg1, arg2): void
    • Parameters

      • arg0: Event
      • arg1: T
      • arg2: Dataset<T>

      Returns void

change: ((arg0, arg1) => void)

Type declaration

    • (arg0, arg1): void
    • Parameters

      • arg0: Event
      • arg1: string

      Returns void

close: (() => void)

Type declaration

    • (): void
    • Returns void

cursorchange: ((arg0, arg1, arg2) => void)

Type declaration

    • (arg0, arg1, arg2): void
    • Parameters

      • arg0: Event
      • arg1: T
      • arg2: Dataset<T>

      Returns void

datasetsempty: ((arg0, arg1, arg2) => void)

Type declaration

    • (arg0, arg1, arg2): void
    • Parameters

      • arg0: Event
      • arg1: string
      • arg2: boolean

      Returns void

open: (() => void)

Type declaration

    • (): void
    • Returns void

select: ((arg0, arg1, arg2) => void)

Type declaration

    • (arg0, arg1, arg2): void
    • Parameters

      • arg0: Event
      • arg1: T
      • arg2: Dataset<T>

      Returns void

Generated using TypeDoc