mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 00:59:29 +08:00
13 lines
246 B
Text
13 lines
246 B
Text
import { Adapter } from '@sveltejs/kit';
|
|
|
|
declare global {
|
|
const ENV_PREFIX: string;
|
|
}
|
|
|
|
interface AdapterOptions {
|
|
out?: string;
|
|
precompress?: boolean;
|
|
envPrefix?: string;
|
|
}
|
|
|
|
export default function plugin(options?: AdapterOptions): Adapter;
|