Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
teddi
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
wildfirecode13
teddi
Commits
103999a2
Commit
103999a2
authored
Nov 12, 2020
by
wildfirecode13
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
bdd9edcf
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
15 deletions
+3
-15
index.d.ts
dist/utils/index.d.ts
+1
-2
index.js
dist/utils/index.js
+1
-3
index.ts
src/utils/index.ts
+1
-3
test.ts
src/utils/test.ts
+0
-7
No files found.
dist/utils/index.d.ts
View file @
103999a2
import
wait
from
"./wait"
;
import
wait
from
"./wait"
;
import
test
from
"./test"
;
export
{
wait
};
export
{
wait
,
test
};
dist/utils/index.js
View file @
103999a2
"use strict"
;
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
,
{
value
:
true
});
Object
.
defineProperty
(
exports
,
"__esModule"
,
{
value
:
true
});
exports
.
test
=
exports
.
wait
=
void
0
;
exports
.
wait
=
void
0
;
var
wait_1
=
require
(
"./wait"
);
var
wait_1
=
require
(
"./wait"
);
exports
.
wait
=
wait_1
.
default
;
exports
.
wait
=
wait_1
.
default
;
var
test_1
=
require
(
"./test"
);
exports
.
test
=
test_1
.
default
;
src/utils/index.ts
View file @
103999a2
import
wait
from
"./wait"
;
import
wait
from
"./wait"
;
import
test
from
"./test"
;
export
{
export
{
wait
,
wait
test
}
}
\ No newline at end of file
src/utils/test.ts
deleted
100644 → 0
View file @
bdd9edcf
export
default
(
ms
)
=>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
setTimeout
(()
=>
{
resolve
()
},
ms
);
})
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment