aboutsummaryrefslogtreecommitdiffstats
path: root/adapter/index.d.ts
blob: 19e34f69f313115cbe2d3d6b6d67d6025562a629 (plain) (blame)
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;