asb_cloud_front/src/utils/index.ts

10 lines
274 B
TypeScript
Raw Normal View History

export type { RawDate } from './datetime'
export { isRawDate, formatDate, defaultFormat, periodToString } from './datetime'
export const headerHeight = 64
export const mainFrameSize = () => ({
width: window.innerWidth,
height: window.innerHeight - headerHeight
})