help.js 370 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.helpDocs = void 0;
  6. var helpDocs = {
  7. name: 'help',
  8. category: 'Expression',
  9. syntax: ['help(object)', 'help(string)'],
  10. description: 'Display documentation on a function or data type.',
  11. examples: ['help(sqrt)', 'help("complex")'],
  12. seealso: []
  13. };
  14. exports.helpDocs = helpDocs;