regenerate types

pull/13048/head
Ben McCann 2 years ago
parent 3efdc5bc2b
commit 66059197c6

@ -1918,6 +1918,11 @@ declare module 'svelte/compiler' {
interface Attribute extends BaseNode { interface Attribute extends BaseNode {
type: 'Attribute'; type: 'Attribute';
name: string; name: string;
/**
* The attribute may be omitted when false.
* String values are represented by an array since it may be a combination of text and expression
* values such as `style="color: {color} !import"`.
*/
value: true | ExpressionTag | Array<Text | ExpressionTag>; value: true | ExpressionTag | Array<Text | ExpressionTag>;
metadata: { metadata: {
expression: ExpressionMetadata; expression: ExpressionMetadata;

Loading…
Cancel
Save