mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-08-01 01:27:23 +02:00
17 lines
416 B
TypeScript
17 lines
416 B
TypeScript
import type { NativeDoc } from '@/Extensions/Extensions';
|
|
|
|
export const booleanMethods: NativeDoc = {
|
|
typeName: 'Boolean',
|
|
functions: {
|
|
toString: {
|
|
doc: {
|
|
name: 'toString',
|
|
description: 'returns a string representing this boolean value.',
|
|
docURL:
|
|
'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toString',
|
|
returnType: 'string',
|
|
},
|
|
},
|
|
},
|
|
};
|