mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-16 02:14:12 +03:00
fcec7adc8b
* replace index.js entry point * add types.d.ts * Update documentation * Add Typescript usage example * Drop template file * Readd test * Minor change Co-authored-by: Álvaro Mondéjar Rubio <mondejar1994@gmail.com>
16 lines
252 B
TypeScript
16 lines
252 B
TypeScript
export interface SimpleIcon {
|
|
title: string;
|
|
slug: string;
|
|
svg: string;
|
|
path: string;
|
|
source: string;
|
|
hex: string;
|
|
guidelines?: string | undefined;
|
|
license?:
|
|
| {
|
|
type: string;
|
|
url: string;
|
|
}
|
|
| undefined;
|
|
}
|