UNPKG

html2canvas-pro

Version:

Screenshots with JavaScript. Next generation!

9 lines (8 loc) 318 B
import { IPropertyListDescriptor } from '../IPropertyDescriptor'; export interface QUOTE { open: string; close: string; } export type Quotes = QUOTE[] | null; export declare const quotes: IPropertyListDescriptor<Quotes>; export declare const getQuote: (quotes: Quotes, depth: number, open: boolean) => string;