16 lines
298 B
TypeScript
16 lines
298 B
TypeScript
import { Adapter } from '@sveltejs/kit';
|
|
import './ambient.js';
|
|
|
|
declare global {
|
|
const ENV_PREFIX: string;
|
|
const PRECOMPRESS: boolean;
|
|
}
|
|
|
|
interface AdapterOptions {
|
|
out?: string;
|
|
precompress?: boolean;
|
|
envPrefix?: string;
|
|
}
|
|
|
|
export default function plugin(options?: AdapterOptions): Adapter;
|