@ethan-jones-vizio/sveld
Version:
Generate TypeScript definitions for your Svelte components.
12 lines (11 loc) • 403 B
TypeScript
import { PluginSveldOptions } from "./rollup-plugin";
interface SveldOptions extends PluginSveldOptions {
/**
* Specify the input to the uncompiled Svelte source.
* If no value is provided, `sveld` will attempt to infer
* the entry point from the `package.json#svelte` field.
*/
input?: string;
}
export declare function sveld(opts?: SveldOptions): Promise<void>;
export {};