UNPKG

ucbuilder

Version:

For Developing Applications with multiple form/usercontrols etc.. In Single BrowserWindow...

12 lines (11 loc) 232 B
export type unitType = 'pt' | 'cm' | 'mm' | 'pc' | 'in'; export interface PageInfo{ width: number, height: number, unit: unitType, } export const pageInfo:PageInfo = { width: 210, height: 297, unit: 'mm' , };