9 lines
636 B
Plaintext
9 lines
636 B
Plaintext
declare const _boolean_attributes: readonly ["allowfullscreen", "allowpaymentrequest", "async", "autofocus", "autoplay", "checked", "controls", "default", "defer", "disabled", "formnovalidate", "hidden", "inert", "ismap", "itemscope", "loop", "multiple", "muted", "nomodule", "novalidate", "open", "playsinline", "readonly", "required", "reversed", "selected"];
|
|
export declare type BooleanAttributes = typeof _boolean_attributes[number];
|
|
/**
|
|
* List of HTML boolean attributes (e.g. `<input disabled>`).
|
|
* Source: https://html.spec.whatwg.org/multipage/indices.html
|
|
*/
|
|
export declare const boolean_attributes: Set<string>;
|
|
export {};
|