版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
341 B

  1. import IElement from '../element/IElement';
  2. import INode from './../node/INode';
  3. /**
  4. * Attr.
  5. */
  6. export default interface IAttr extends INode {
  7. value: string;
  8. name: string;
  9. namespaceURI: string;
  10. readonly ownerElement: IElement;
  11. readonly specified: boolean;
  12. readonly localName: string;
  13. readonly prefix: string;
  14. }