api.js 857 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /**
  2. * 该文件定义了API文档所使用到的本地函数的说明
  3. * @file
  4. * @module Native
  5. */
  6. /**
  7. * 辅助接口说明
  8. * @module Native
  9. * @unfile
  10. */
  11. /**
  12. * 原生String对象, 字符串
  13. * @class String
  14. */
  15. /**
  16. * 原生Function对象, 函数
  17. * @class Function
  18. */
  19. /**
  20. * 原生Object对象, 普通对象
  21. * @remind 如果某一方法的参数类型为Object时, 表示该参数应该接受一个key-value集合
  22. * @class Object
  23. */
  24. /**
  25. * 原生Boolean对象, 布尔值
  26. * @class Boolean
  27. */
  28. /**
  29. * 原生Number对象, 数值
  30. * @class Number
  31. */
  32. /**
  33. * 原生NULL对象, 空
  34. * @class NULL
  35. */
  36. /**
  37. * 原生Array对象, 数组
  38. * @class Array
  39. */
  40. /**
  41. * 浏览器Node, dom节点
  42. * @class Node
  43. */
  44. /**
  45. * 浏览器Element, dom元素
  46. * @class Element
  47. */
  48. /**
  49. * UEditor模拟dom节点对象
  50. * @class uNode
  51. */