We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7990d0 commit 1a0f9a2Copy full SHA for 1a0f9a2
lib/common/utils/index.spec.ts
@@ -1,11 +1,13 @@
1
import { DevkitUtils, utils } from './index'
2
import { execute } from './execute'
3
+import { arrayify } from './arrayify'
4
5
describe('index.ts', () => {
6
describe('utils', () => {
7
it('check return object', () => {
8
const expected: DevkitUtils = {
9
execute,
10
+ arrayify,
11
}
12
13
const result = utils
lib/common/utils/index.ts
@@ -1,9 +1,14 @@
export type DevkitUtils = {
readonly execute: typeof execute
+ readonly arrayify: typeof arrayify
export const utils: DevkitUtils = {
+
14
+export { execute, arrayify }
0 commit comments