Home / Type/ HTMLDetailsAttributes Type — svelte Architecture

HTMLDetailsAttributes Type — svelte Architecture

Architecture documentation for the HTMLDetailsAttributes type/interface in elements.d.ts from the svelte codebase.

Entity Profile

Dependency Diagram

graph TD
  6c84dc50_6432_ca30_6d97_d068bf019895["HTMLDetailsAttributes"]
  700a5e5a_a1f3_b441_73c5_83af6017e3aa["elements.d.ts"]
  6c84dc50_6432_ca30_6d97_d068bf019895 -->|defined in| 700a5e5a_a1f3_b441_73c5_83af6017e3aa
  style 6c84dc50_6432_ca30_6d97_d068bf019895 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

packages/svelte/elements.d.ts lines 949–958

export interface HTMLDetailsAttributes extends HTMLAttributes<HTMLDetailsElement> {
	open?: boolean | undefined | null;
	name?: string | undefined | null;

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

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

Frequently Asked Questions

What is the HTMLDetailsAttributes type?
HTMLDetailsAttributes is a type/interface in the svelte codebase, defined in packages/svelte/elements.d.ts.
Where is HTMLDetailsAttributes defined?
HTMLDetailsAttributes is defined in packages/svelte/elements.d.ts at line 949.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free