UNPKG
@seaavey/bot
Version:
latest (1.0.3)
1.0.3
1.0.2-beta.0
1.0.1-beta.1
1.0.1-beta.0
1.0.0
The Library for Seaavey Bot
@seaavey/bot
/
lib
/
Utils
/
minfy.d.ts
9 lines
(8 loc)
•
213 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
type
State
=
'development'
|
'production'
;
interface
MinifyOptions
{
state
:
State
;
only
?:
string
;
exclude
?:
string
; }
export
default
function
minifyJS
(
config
:
MinifyOptions
):
Promise
<
void
>;
export
{};