|
| 1 | +// FIXME Since the node type is not provided by "svelte/compiler", |
| 2 | +// we work around this by extracting the type from the parse function. |
| 3 | +// See also https://github.com/sveltejs/svelte/issues/12292 |
| 4 | + |
| 5 | +import type { parse } from "svelte/compiler"; |
| 6 | + |
| 7 | +export type Root = ModernParseReturnType<typeof parse>; |
| 8 | +export type Fragment = Root["fragment"]; |
| 9 | +export type SvelteOptions = Root["options"]; |
| 10 | +export type Script = Root["instance"]; |
| 11 | +type FragmentChild = Fragment["nodes"][number]; |
| 12 | + |
| 13 | +export type Text = Extract<FragmentChild, { type: "Text" }>; |
| 14 | + |
| 15 | +export type ExpressionTag = Extract<FragmentChild, { type: "ExpressionTag" }>; |
| 16 | +export type HtmlTag = Extract<FragmentChild, { type: "HtmlTag" }>; |
| 17 | +export type ConstTag = Extract<FragmentChild, { type: "ConstTag" }>; |
| 18 | +export type DebugTag = Extract<FragmentChild, { type: "DebugTag" }>; |
| 19 | +export type RenderTag = Extract<FragmentChild, { type: "RenderTag" }>; |
| 20 | + |
| 21 | +export type Component = Extract<FragmentChild, { type: "Component" }>; |
| 22 | +export type TitleElement = Extract<FragmentChild, { type: "TitleElement" }>; |
| 23 | +export type SlotElement = Extract<FragmentChild, { type: "SlotElement" }>; |
| 24 | +export type RegularElement = Extract<FragmentChild, { type: "RegularElement" }>; |
| 25 | +export type SvelteBody = Extract<FragmentChild, { type: "SvelteBody" }>; |
| 26 | +export type SvelteComponent = Extract< |
| 27 | + FragmentChild, |
| 28 | + { type: "SvelteComponent" } |
| 29 | +>; |
| 30 | +export type SvelteDocument = Extract<FragmentChild, { type: "SvelteDocument" }>; |
| 31 | +export type SvelteElement = Extract<FragmentChild, { type: "SvelteElement" }>; |
| 32 | +export type SvelteFragment = Extract<FragmentChild, { type: "SvelteFragment" }>; |
| 33 | +export type SvelteHead = Extract<FragmentChild, { type: "SvelteHead" }>; |
| 34 | +export type SvelteOptionsRaw = Extract< |
| 35 | + FragmentChild, |
| 36 | + { type: "SvelteOptions" } |
| 37 | +>; |
| 38 | +export type SvelteSelf = Extract<FragmentChild, { type: "SvelteSelf" }>; |
| 39 | +export type SvelteWindow = Extract<FragmentChild, { type: "SvelteWindow" }>; |
| 40 | + |
| 41 | +export type IfBlock = Extract<FragmentChild, { type: "IfBlock" }>; |
| 42 | +export type EachBlock = Extract<FragmentChild, { type: "EachBlock" }>; |
| 43 | +export type AwaitBlock = Extract<FragmentChild, { type: "AwaitBlock" }>; |
| 44 | +export type KeyBlock = Extract<FragmentChild, { type: "KeyBlock" }>; |
| 45 | +export type SnippetBlock = Extract<FragmentChild, { type: "SnippetBlock" }>; |
| 46 | + |
| 47 | +export type Comment = Extract<FragmentChild, { type: "Comment" }>; |
| 48 | +type ComponentAttribute = Component["attributes"][number]; |
| 49 | +export type Attribute = Extract<ComponentAttribute, { type: "Attribute" }>; |
| 50 | +export type SpreadAttribute = Extract< |
| 51 | + ComponentAttribute, |
| 52 | + { type: "SpreadAttribute" } |
| 53 | +>; |
| 54 | +export type AnimateDirective = Extract< |
| 55 | + ComponentAttribute, |
| 56 | + { type: "AnimateDirective" } |
| 57 | +>; |
| 58 | +export type BindDirective = Extract< |
| 59 | + ComponentAttribute, |
| 60 | + { type: "BindDirective" } |
| 61 | +>; |
| 62 | +export type ClassDirective = Extract< |
| 63 | + ComponentAttribute, |
| 64 | + { type: "ClassDirective" } |
| 65 | +>; |
| 66 | +export type LetDirective = Extract< |
| 67 | + ComponentAttribute, |
| 68 | + { type: "LetDirective" } |
| 69 | +>; |
| 70 | +export type OnDirective = Extract<ComponentAttribute, { type: "OnDirective" }>; |
| 71 | +export type StyleDirective = Extract< |
| 72 | + ComponentAttribute, |
| 73 | + { type: "StyleDirective" } |
| 74 | +>; |
| 75 | +export type TransitionDirective = Extract< |
| 76 | + ComponentAttribute, |
| 77 | + { type: "TransitionDirective" } |
| 78 | +>; |
| 79 | +export type UseDirective = Extract< |
| 80 | + ComponentAttribute, |
| 81 | + { type: "UseDirective" } |
| 82 | +>; |
| 83 | + |
| 84 | +export type Tag = ExpressionTag | HtmlTag | ConstTag | DebugTag | RenderTag; |
| 85 | +export type ElementLike = |
| 86 | + | Component |
| 87 | + | TitleElement |
| 88 | + | SlotElement |
| 89 | + | RegularElement |
| 90 | + | SvelteBody |
| 91 | + | SvelteComponent |
| 92 | + | SvelteDocument |
| 93 | + | SvelteElement |
| 94 | + | SvelteFragment |
| 95 | + | SvelteHead |
| 96 | + | SvelteOptionsRaw |
| 97 | + | SvelteSelf |
| 98 | + | SvelteWindow; |
| 99 | +export type Block = EachBlock | IfBlock | AwaitBlock | KeyBlock | SnippetBlock; |
| 100 | + |
| 101 | +export type Directive = |
| 102 | + | AnimateDirective |
| 103 | + | BindDirective |
| 104 | + | ClassDirective |
| 105 | + | LetDirective |
| 106 | + | OnDirective |
| 107 | + | StyleDirective |
| 108 | + | TransitionDirective |
| 109 | + | UseDirective; |
| 110 | + |
| 111 | +type ModernParseReturnType<T> = T extends { |
| 112 | + (source: string, options: { filename?: string; modern: true }): infer R; |
| 113 | + (...args: any[]): any; |
| 114 | +} |
| 115 | + ? R |
| 116 | + : any; |
0 commit comments