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