1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import { Adapter } from '@sveltejs/kit'; interface AdapterOptions { pages?: string; assets?: string; fallback?: string; precompress?: boolean; manifest?: string; emptyOutDir?: boolean; paths?: { base?: string; app?: string; }; } declare function plugin(options?: AdapterOptions): Adapter; export = plugin;