You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
311 B
TypeScript

import type * as SvAST from "./svelte-ast-types";
import type { Context } from "../context";
import type { SvelteProgram } from "../ast";
/**
* Parse for template
*/
export declare function parseTemplate(code: string, ctx: Context, parserOptions?: any): {
ast: SvelteProgram;
svelteAst: SvAST.Ast;
};