@upstart.gg/sdk
Version:
You can test the CLI without recompiling by running:
16 lines • 426 B
TypeScript
//#region src/shared/layout-constants.d.ts
declare const LAYOUT_COLS = 24;
declare const LAYOUT_BREAKPOINTS: {
desktop: number;
mobile: number;
};
/**
* Important: keep the same pdding for x and y.
*/
/**
* This is the height of a row in the layout grid.
*/
declare const LAYOUT_ROW_HEIGHT = 24;
//#endregion
export { LAYOUT_BREAKPOINTS, LAYOUT_COLS, LAYOUT_ROW_HEIGHT };
//# sourceMappingURL=layout-constants.d.ts.map