/** * @typedef {object} LevelAttributes * @prop {boolean} [mobile] */ /** * A multi-purpose horizontal level, which can contain almost any other element * * https://bulma.io/documentation/layout/level/ * @type {m.Component} */ export const Main: m.Component; /** * https://bulma.io/documentation/layout/level/ * @type {m.Component} */ export const Left: m.Component; /** * https://bulma.io/documentation/layout/level/ * @type {m.Component} */ export const Right: m.Component; /** * @typedef {object} LevelItemAttributes * @prop {boolean} [centered] */ /** * https://bulma.io/documentation/layout/level/ * @type {m.Component} */ export const Item: m.Component; export type LevelAttributes = { mobile?: boolean; }; export type LevelItemAttributes = { centered?: boolean; }; import m from 'mithril';