UNPKG
@yanshouwang/core
Version:
latest (1.0.1)
1.0.1
1.0.0
Core Lib of TypeScript
github.com/yanshouwang/Core.TS
yanshouwang/Core.TS
@yanshouwang/core
/
dist
/
utf8.d.ts
7 lines
(6 loc)
•
166 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
Codec
}
from
"./codec"
;
declare
class
UTF8
implements
Codec
{
decode
(
codes
:
Uint8Array
):
string
;
encode
(
str
:
string
):
Uint8Array
; }
export
{
UTF8
};