UNPKG

winterspec

Version:

Write Winter-CG compatible routes with filesystem routing and tons of features

9 lines (8 loc) 293 B
import { ResolvedWinterSpecConfig } from "../config/utils.js"; export interface BundleResult { code: string; sourceMap?: string; } export declare const bundle: (config: ResolvedWinterSpecConfig, options?: { sourcemap?: boolean | "inline" | "external"; }) => Promise<BundleResult>;