interface Listener {
    filter: {
        cancel?: string;
        payload?: any;
        request?: string;
    };
    fn: ((...args) => void);
}

Properties

Properties

filter: {
    cancel?: string;
    payload?: any;
    request?: string;
}

Type declaration

  • Optional cancel?: string
  • Optional payload?: any
  • Optional request?: string
fn: ((...args) => void)

Type declaration

    • (...args): void
    • Parameters

      • Rest ...args: any[]

      Returns void

Generated using TypeDoc