mirror of
https://github.com/LukeHagar/sveltekit-electron-adapter.git
synced 2025-12-06 04:21:32 +00:00
14 lines
282 B
TypeScript
14 lines
282 B
TypeScript
import { Adapter } from "@sveltejs/kit";
|
|
|
|
export interface AdapterOptions {
|
|
pages?: string;
|
|
assets?: string;
|
|
fallback?: string;
|
|
precompress?: boolean;
|
|
strict?: boolean;
|
|
policy?: string;
|
|
viewport?: string;
|
|
}
|
|
|
|
export default function plugin(options?: AdapterOptions): Adapter;
|