UNPKG

videomail-client

Version:

A wicked npm package to record videos directly in the browser, wohooo!

9 lines (8 loc) 290 B
type AbsoluteUnit = "px" | "pt" | "pc" | "in" | "cm" | "mm" | "Q"; type RelativeUnit = "em" | "rem" | "%" | "vw" | "vh" | "vmin" | "vmax" | "ex" | "ch"; type CSSUnit = AbsoluteUnit | RelativeUnit; export interface Dimension { unit: CSSUnit; value?: number | undefined; } export {};