You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
547 B

3 months ago
  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;