UNPKG

js-web-screen-shot

Version:

web端自定义截屏插件(原生JS版)

6 lines (5 loc) 528 B
import type { CanvasExportOptions, CanvasExportType } from "../../../lib/type/components/screenshot"; export declare const isSupportedCanvasExportType: (type: unknown) => type is CanvasExportType; export declare const normalizeCanvasExportOptions: (options?: CanvasExportOptions | null) => Required<CanvasExportOptions>; export declare const getCanvasExportTypeFromDataUrl: (dataUrl: string, fallback: CanvasExportType) => CanvasExportType; export declare const getCanvasExportFileExtension: (type: CanvasExportType) => string;