UNPKG
profile-picture-generator
Version:
latest (1.5.0)
1.5.0
1.4.2
1.4.1
1.3.4
1.3.3
1.3.2
1.2.1
1.2.0
FridaysForFuture profile picture generator
gitlab.com/developersforfuture/profile-generator-frontend
profile-picture-generator
/
src
/
types.d.ts
15 lines
(12 loc)
•
230 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
declare
module
"*.svg"
{
const
content
:
any
;
export
default
content; }
declare
module
"*.png"
{
const
content
:
any
;
export
default
content; }
declare
module
"*.ttf"
{
const
content
:
string
;
export
default
content; }