UNPKG

ember-bootstrap

Version:
33 lines 1.01 kB
/** * * Modal header element used within [Components.Modal](Components.Modal.html) components. See there for examples. * * @class ModalHeader * @namespace Components * @extends Glimmer.Component * @public */ import type { ComponentLike } from '@glint/template'; import type { TitleSignature } from './header/title'; import type { CloseSignature } from './header/close'; export interface HeaderSignature { Args: { closeButton?: boolean; title?: string; titleComponent?: ComponentLike<TitleSignature>; closeComponent?: ComponentLike<CloseSignature>; onClose?: () => void; }; Blocks: { default: [ { title: ComponentLike<TitleSignature>; close: ComponentLike<CloseSignature>; } ]; }; Element: HTMLDivElement; } declare const _default: import("@ember/component/template-only").TemplateOnlyComponent<HeaderSignature>; export default _default; //# sourceMappingURL=header.d.ts.map