ProcessingInstruction
A processing instruction embeds application-specific instructions in XML which can be ignored by other applications that don't recognize them.
interface ProcessingInstruction extends CharacterData, LinkStyle {
readonly ownerDocument: Document;
readonly target: string;
}var ProcessingInstruction: {
prototype: ProcessingInstruction;
new (): ProcessingInstruction;
};