12 lines
244 B
TypeScript
12 lines
244 B
TypeScript
import { Adapter } from '@sveltejs/kit';
|
|
|
|
export interface AdapterOptions {
|
|
pages?: string;
|
|
assets?: string;
|
|
fallback?: string;
|
|
precompress?: boolean;
|
|
strict?: boolean;
|
|
}
|
|
|
|
export default function plugin(options?: AdapterOptions): Adapter;
|