19 lines
612 B
TypeScript
19 lines
612 B
TypeScript
|
|
import CharacterData from '../character-data/CharacterData.js';
|
||
|
|
import NodeTypeEnum from '../node/NodeTypeEnum.js';
|
||
|
|
import * as PropertySymbol from '../../PropertySymbol.js';
|
||
|
|
/**
|
||
|
|
* Processing instruction node interface.
|
||
|
|
*
|
||
|
|
* Reference: https://developer.mozilla.org/en-US/docs/Web/API/ProcessingInstruction.
|
||
|
|
*/
|
||
|
|
export default class ProcessingInstruction extends CharacterData {
|
||
|
|
[PropertySymbol.nodeType]: NodeTypeEnum;
|
||
|
|
[PropertySymbol.target]: string;
|
||
|
|
/**
|
||
|
|
* Returns target.
|
||
|
|
*
|
||
|
|
* @returns Target.
|
||
|
|
*/
|
||
|
|
get target(): string;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=ProcessingInstruction.d.ts.map
|