版博士V2.0程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ProcessingInstruction.d.ts 499 B

123456789101112
  1. import IProcessingInstruction from './IProcessingInstruction';
  2. import CharacterData from '../character-data/CharacterData';
  3. import NodeTypeEnum from '../node/NodeTypeEnum';
  4. /**
  5. * Processing instruction node interface.
  6. *
  7. * Reference: https://developer.mozilla.org/en-US/docs/Web/API/ProcessingInstruction.
  8. */
  9. export default class ProcessingInstruction extends CharacterData implements IProcessingInstruction {
  10. readonly nodeType = NodeTypeEnum.processingInstructionNode;
  11. target: string;
  12. }