78 lines
1.8 KiB
TypeScript
78 lines
1.8 KiB
TypeScript
|
|
import Element from '../element/Element.js';
|
||
|
|
import Node from '../node/Node.js';
|
||
|
|
import * as PropertySymbol from '../../PropertySymbol.js';
|
||
|
|
import NodeTypeEnum from '../node/NodeTypeEnum.js';
|
||
|
|
/**
|
||
|
|
* Attribute node interface.
|
||
|
|
*
|
||
|
|
* Reference: https://developer.mozilla.org/en-US/docs/Web/API/Attr.
|
||
|
|
*/
|
||
|
|
export default class Attr extends Node implements Attr {
|
||
|
|
cloneNode: (deep?: boolean) => Attr;
|
||
|
|
[PropertySymbol.nodeType]: NodeTypeEnum;
|
||
|
|
[PropertySymbol.namespaceURI]: string | null;
|
||
|
|
[PropertySymbol.name]: string | null;
|
||
|
|
[PropertySymbol.localName]: string | null;
|
||
|
|
[PropertySymbol.prefix]: string | null;
|
||
|
|
[PropertySymbol.value]: string | null;
|
||
|
|
[PropertySymbol.specified]: boolean;
|
||
|
|
[PropertySymbol.ownerElement]: Element | null;
|
||
|
|
/**
|
||
|
|
* Returns specified.
|
||
|
|
*
|
||
|
|
* @deprecated
|
||
|
|
* @returns Specified.
|
||
|
|
*/
|
||
|
|
get specified(): boolean;
|
||
|
|
/**
|
||
|
|
* Returns owner element.
|
||
|
|
*
|
||
|
|
* @returns Owner element.
|
||
|
|
*/
|
||
|
|
get ownerElement(): Element | null;
|
||
|
|
/**
|
||
|
|
* Returns value.
|
||
|
|
*
|
||
|
|
* @returns Value.
|
||
|
|
*/
|
||
|
|
get value(): string | null;
|
||
|
|
/**
|
||
|
|
* Sets value.
|
||
|
|
*
|
||
|
|
* @param value Value.
|
||
|
|
*/
|
||
|
|
set value(value: string);
|
||
|
|
/**
|
||
|
|
* Returns name.
|
||
|
|
*
|
||
|
|
* @returns Name.
|
||
|
|
*/
|
||
|
|
get name(): string;
|
||
|
|
/**
|
||
|
|
* Returns local name.
|
||
|
|
*
|
||
|
|
* @returns Local name.
|
||
|
|
*/
|
||
|
|
get localName(): string;
|
||
|
|
/**
|
||
|
|
* Returns prefix.
|
||
|
|
*
|
||
|
|
* @returns Prefix.
|
||
|
|
*/
|
||
|
|
get prefix(): string | null;
|
||
|
|
/**
|
||
|
|
* @override
|
||
|
|
*/
|
||
|
|
get textContent(): string;
|
||
|
|
/**
|
||
|
|
* Returns namespace URI.
|
||
|
|
*
|
||
|
|
* @returns Namespace URI.
|
||
|
|
*/
|
||
|
|
get namespaceURI(): string | null;
|
||
|
|
/**
|
||
|
|
* @override
|
||
|
|
*/
|
||
|
|
[PropertySymbol.cloneNode](deep?: boolean): Attr;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=Attr.d.ts.map
|