HTMLFormAttributes Type — svelte Architecture
Architecture documentation for the HTMLFormAttributes type/interface in elements.d.ts from the svelte codebase.
Entity Profile
Dependency Diagram
graph TD ddaf4bb3_4d4e_ef0f_f9f6_8de80d882c49["HTMLFormAttributes"] 700a5e5a_a1f3_b441_73c5_83af6017e3aa["elements.d.ts"] ddaf4bb3_4d4e_ef0f_f9f6_8de80d882c49 -->|defined in| 700a5e5a_a1f3_b441_73c5_83af6017e3aa style ddaf4bb3_4d4e_ef0f_f9f6_8de80d882c49 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/svelte/elements.d.ts lines 983–998
export interface HTMLFormAttributes extends HTMLAttributes<HTMLFormElement> {
'accept-charset'?: 'utf-8' | (string & {}) | undefined | null;
action?: string | undefined | null;
autocomplete?: AutoFillBase | undefined | null;
enctype?:
| 'application/x-www-form-urlencoded'
| 'multipart/form-data'
| 'text/plain'
| undefined
| null;
method?: 'dialog' | 'get' | 'post' | 'DIALOG' | 'GET' | 'POST' | undefined | null;
name?: string | undefined | null;
novalidate?: boolean | undefined | null;
target?: string | undefined | null;
rel?: string | undefined | null;
}
Defined In
Source
Frequently Asked Questions
What is the HTMLFormAttributes type?
HTMLFormAttributes is a type/interface in the svelte codebase, defined in packages/svelte/elements.d.ts.
Where is HTMLFormAttributes defined?
HTMLFormAttributes is defined in packages/svelte/elements.d.ts at line 983.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free