UNPKG
core-graphics
Version:
latest (6.8.0)
6.8.0
6.7.3
6.7.2
6.7.1
6.7.0
6.6.1
6.6.0
6.5.7
6.5.6
6.5.5
6.5.4
6.5.3
6.5.2
6.5.1
6.5.0
6.4.0
6.3.4
6.3.3
6.3.2
6.3.1
6.3.0
6.2.8
6.2.7
6.2.6
6.2.4
6.2.3
6.2.2
6.2.1
6.2.0
6.1.1
6.1.0
6.0.3
6.0.2
6.0.1
6.0.0
5.0.1
5.0.0
4.0.3
4.0.2
4.0.1
4.0.0
3.6.1
3.6.0
3.5.2
3.5.1
3.5.0
3.4.0
3.3.3
3.3.2
3.3.1
3.2.0
3.1.7
3.1.6
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.1
3.0.0
A core library for creating shape-based graphic editors
core-graphics
/
missing-typings
/
js-base64.d.ts
13 lines
(8 loc)
•
192 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
declare
module
'js-base64'
{
interface
IBase64
{
encode
(
a
:
string
):
string
;
decode
(
a
:
string
):
string
; }
/* tslint:disable:variable-name */
export
const
Base64
: IBase64; }