UNPKG
@devchristian1337/dev-icons
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
A library to serve development-related icons
@devchristian1337/dev-icons
/
dist
/
types
/
index.d.ts
12 lines
(11 loc)
•
250 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
interface
Icon
{
name
:
string
;
icon
:
string
; }
export
interface
IconsData
{ [
key
:
string
]:
Icon
; }
export
type
IconKey
= keyof
IconsData
;
export
declare
class
IconValidationError
extends
Error
{
constructor
(
message
:
string
); }