export const booleanMethods = { typeName: 'Boolean', functions: { toString: { doc: { name: 'toString', description: "Converts true to the string 'true' and false to the string 'false'.", examples: [ { example: 'true.toString()', evaluated: "'true'" }, { example: 'false.toString()', evaluated: "'false'" }, ], docURL: 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toString', returnType: 'string', }, }, }, }; //# sourceMappingURL=boolean.methods.js.map