UNPKG

vite-plugin-ssg-utils

Version:
10 lines (9 loc) 268 B
import { Plugin } from 'vite'; export interface Options { /** * Use false to disable mocking of ResizeObserver. */ resizeObserver: boolean | (new () => ResizeObserver); } declare function SSGUtils(options?: Options): Plugin; export default SSGUtils;