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.

13 lines
371 B
TypeScript

import type ESTree from "estree";
import type { BaseNode } from "./base";
export type SvelteScriptNode = SvelteReactiveStatement;
/** Node of `$` statement. */
export interface SvelteReactiveStatement extends BaseNode {
type: "SvelteReactiveStatement";
label: ESTree.Identifier & {
name: "$";
};
body: ESTree.Statement;
parent: ESTree.Node;
}