bs-modal-ref.service.d.ts 331 B

1234567891011121314
  1. export declare class BsModalRef {
  2. /**
  3. * Reference to a component inside the modal. Null if modal's been created with TemplateRef
  4. */
  5. content?: any | null;
  6. /**
  7. * Hides the modal
  8. */
  9. hide: () => void;
  10. /**
  11. * Sets new class to modal window
  12. */
  13. setClass: (newClass: string) => void;
  14. }