valor-software/ng2-bootstrap

View on GitHub
src/component-loader/listen-options.model.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type BsEventCallback = (event?: any) => boolean | void;

export interface ListenOptions {
  target?: HTMLElement;
  targets?: HTMLElement[];
  triggers?: string;
  outsideClick?: boolean;
  show?: BsEventCallback;
  hide?: BsEventCallback;
  toggle?: BsEventCallback;
}