Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dummdidumm authored Jan 2, 2024
1 parent cf1e32c commit 71229b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/svelte/elements.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ export interface HTMLAnchorAttributes extends HTMLAttributes<HTMLAnchorElement>
'sapper:prefetch'?: true | undefined | null;
}

export type HTMLAudioAttributes = HTMLMediaAttributes<HTMLAudioElement>;
export interface HTMLAudioAttributes extends HTMLMediaAttributes<HTMLAudioElement> {}

export interface HTMLAreaAttributes extends HTMLAttributes<HTMLAreaElement> {
alt?: string | undefined | null;
Expand Down Expand Up @@ -693,7 +693,7 @@ export interface HTMLDetailsAttributes extends HTMLAttributes<HTMLDetailsElement

'bind:open'?: boolean | undefined | null;

'on:toggle'?: EventHandler<Event, T> | undefined | null;
'on:toggle'?: EventHandler<Event, HTMLDetailsElement> | undefined | null;
}

export interface HTMLDelAttributes extends HTMLAttributes<HTMLModElement> {
Expand Down

0 comments on commit 71229b8

Please sign in to comment.