/** * @typedef {object} TitleAttributes * @prop {1|2|3|4|5|6} [level] */ /** * Simple headings to add depth to your page * * https://bulma.io/documentation/elements/title/ * * @type {m.Component} */ export const Title: m.Component; /** * A standard Subtitle * * https://bulma.io/documentation/elements/title/ * * @type {m.Component} */ export const Subtitle: m.Component; /** * @typedef {object} TitleGroupAttributes * @prop {1|2|3|4} [level] * @prop {string} title * @prop {string} subtitle */ /** * A pair of title and subtitle sized and spaced as recommended by bulma * * https://bulma.io/documentation/elements/title/ * * @type {m.Component} */ export const TitleGroup: m.Component; export type TitleAttributes = { level?: 1 | 2 | 3 | 4 | 5 | 6; }; export type TitleGroupAttributes = { level?: 1 | 2 | 3 | 4; title: string; subtitle: string; }; import m from 'mithril';