mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
17 lines
476 B
TypeScript
17 lines
476 B
TypeScript
import { arrayMethods } from './Array.methods';
|
|
import { booleanMethods } from './Boolean.methods';
|
|
import { numberMethods } from './Number.methods';
|
|
import { objectMethods } from './Object.Methods';
|
|
import { stringMethods } from './String.methods';
|
|
import type { NativeDoc } from '../Extensions/Extensions';
|
|
|
|
const NATIVE_METHODS: NativeDoc[] = [
|
|
stringMethods,
|
|
arrayMethods,
|
|
numberMethods,
|
|
objectMethods,
|
|
booleanMethods,
|
|
];
|
|
|
|
export { NATIVE_METHODS as NativeMethods };
|