@devchristian1337/dev-icons
Version:
A library to serve development-related icons
17 lines (14 loc) • 317 B
text/typescript
export interface Icon {
name: string;
icon: string;
}
export interface IconsData {
[key: string]: Icon;
}
export type IconKey = keyof IconsData;
export class IconValidationError extends Error {
constructor(message: string) {
super(message);
this.name = 'IconValidationError';
}
}