UNPKG

html2canvas-pro

Version:

Screenshots with JavaScript. Next generation!

15 lines (14 loc) 414 B
import { IPropertyListDescriptor } from '../IPropertyDescriptor'; import { Color } from '../types/color'; import { Length } from '../types/length'; export type BoxShadow = BoxShadowItem[]; interface BoxShadowItem { inset: boolean; color: Color; offsetX: Length; offsetY: Length; blur: Length; spread: Length; } export declare const boxShadow: IPropertyListDescriptor<BoxShadow>; export {};