utils.d.ts 547 B

12345678
  1. import type { CSSProperties } from 'vue';
  2. /** converting camel-cased strings to be lowercase and link it with Separato */
  3. export declare function toLowercaseSeparator(key: string): string;
  4. export declare function getStyleStr(style: CSSProperties): string;
  5. /** Returns the ratio of the device's physical pixel resolution to the css pixel resolution */
  6. export declare function getPixelRatio(): number;
  7. /** Whether to re-render the watermark */
  8. export declare const reRendering: (mutation: MutationRecord, watermarkElement?: HTMLElement) => boolean;