mirror of
https://github.com/LukeHagar/sveltekit-electron-adapter.git
synced 2025-12-09 20:57:46 +00:00
13 lines
268 B
TypeScript
13 lines
268 B
TypeScript
import { Adapter } from "@sveltejs/kit";
|
|
|
|
export interface AdapterOptions {
|
|
pages?: string;
|
|
assets?: string;
|
|
fallback?: string;
|
|
precompress?: boolean;
|
|
strict?: boolean;
|
|
policy?: string;
|
|
}
|
|
|
|
export default function plugin(options?: AdapterOptions): Adapter;
|