@aelesia/commons-ext
Advanced tools
Comparing version 0.4.0-next.9 to 0.4.0-next.11
@@ -1,1 +0,9 @@ | ||
export declare const extend: () => void; | ||
import { DateExt } from './src/prototype/DateExt'; | ||
import { ArrayExt } from './src/prototype/ArrayExt'; | ||
import { StringExt } from './src/prototype/StringExt'; | ||
export declare const extend: { | ||
date: typeof DateExt; | ||
array: typeof ArrayExt; | ||
string: typeof StringExt; | ||
all: () => void; | ||
}; |
@@ -10,3 +10,8 @@ "use strict"; | ||
StringExt_1.StringExt(); | ||
exports.extend = function () { }; | ||
exports.extend = { | ||
date: DateExt_1.DateExt, | ||
array: ArrayExt_1.ArrayExt, | ||
string: StringExt_1.StringExt, | ||
all: function () { } | ||
}; | ||
//# sourceMappingURL=index.js.map |
@@ -11,2 +11,8 @@ import { DateExt } from './src/prototype/DateExt' | ||
// eslint-disable-next-line @typescript-eslint/no-empty-function | ||
export const extend = () => {} | ||
export const extend = { | ||
date: DateExt, | ||
array: ArrayExt, | ||
string: StringExt, | ||
// eslint-disable-next-line @typescript-eslint/no-empty-function | ||
all: () => {} | ||
} |
import { extend } from './index' | ||
extend() | ||
extend.all() | ||
// @ts-ignore | ||
jest.setTimeout(20000) |
{ | ||
"name": "@aelesia/commons-ext", | ||
"version": "0.4.0-next.9", | ||
"version": "0.4.0-next.11", | ||
"description": "Extensions version of @aelesia/npm-commons", | ||
@@ -5,0 +5,0 @@ "author": "aelesia", |
Sorry, the diff of this file is not supported yet
18825
338