From 54a41f2431c3d60f5845a15447f13413299e41f2 Mon Sep 17 00:00:00 2001 From: memdmp Date: Mon, 24 Feb 2025 01:09:00 +0100 Subject: feat: da extension --- adapter/index.d.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 adapter/index.d.ts (limited to 'adapter/index.d.ts') diff --git a/adapter/index.d.ts b/adapter/index.d.ts new file mode 100644 index 0000000..19e34f6 --- /dev/null +++ b/adapter/index.d.ts @@ -0,0 +1,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; -- cgit v1.2.3