comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
8 lines (6 loc) • 349 B
TypeScript
import { CSSProperties, Ref } from 'vue';
type MaybeElement = Ref<HTMLElement>;
export declare const getStyleStr: (style: CSSProperties) => string;
export declare const getPixelRatio: () => number;
export declare const useMutationObserver: (target: MaybeElement, callback: (...args: any) => void, options: MutationObserverInit) => void;
export {};