UNPKG

ember-bootstrap

Version:
20 lines (17 loc) 415 B
/** * * Modal body element used within [Components.Modal](Components.Modal.html) components. See there for examples. * * @class ModalBody * @namespace Components * @extends Glimmer.Component * @public */ import templateOnly from '@ember/component/template-only'; export interface BodySignature { Blocks: { default: []; }; Element: HTMLDivElement; } export default templateOnly<BodySignature>();