refactor(types): separate script to generate types

This commit is contained in:
Eric Liu 2020-08-11 19:52:33 -07:00
commit c8b0b008c7
4 changed files with 1277 additions and 1248 deletions

View file

@ -36,19 +36,34 @@
* @typedef {ColumnSize | ColumnSizeDescriptor} ColumnBreakpoint
*/
/** @type {ColumnBreakpoint} [sm] */
/**
* Set the small breakpoint
* @type {ColumnBreakpoint} [sm]
*/
export let sm = undefined;
/** @type {ColumnBreakpoint} [md] */
/**
* Set the medium breakpoint
* @type {ColumnBreakpoint} [md]
*/
export let md = undefined;
/** @type {ColumnBreakpoint} [lg] */
/**
* Set the large breakpoint
* @type {ColumnBreakpoint} [lg]
*/
export let lg = undefined;
/** @type {ColumnBreakpoint} [xlg] */
/**
* Set the extra large breakpoint
* @type {ColumnBreakpoint} [xlg]
*/
export let xlg = undefined;
/** @type {ColumnBreakpoint} [max] */
/**
* Set the maximum breakpoint
* @type {ColumnBreakpoint} [max]
*/
export let max = undefined;
/**