UNPKG
@xcrap/decryptor
Version:
latest (0.0.2)
0.0.2
0.0.1
@xcrap/decryptor
/
dist
/
factory.d.ts
7 lines
(6 loc)
•
244 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
DecryptConfig
}
from
"./decryptor"
;
export
declare
function
DecryptorClient
<
TBase
extends
new
(...
args
:
any
[]) =>
any
>(
BaseClass
:
TBase
,
config
:
DecryptConfig
): {
new
(...
args
:
any
[]): { [
x
:
string
]:
any
; }; } &
TBase
;