1
0
mirror of https://github.com/simple-icons/simple-icons.git synced 2025-11-23 21:34:49 +02:00
Files
simple-icons/types.d.ts

30 lines
483 B
TypeScript

// @ts-check
/**
* @file Types for Simple Icons package.
*/
import type {License} from './data/simple-icons.d.ts';
export type {
Aliases,
CustomLicense,
DuplicateAlias,
IconData,
License,
SPDXLicense,
} from './data/simple-icons.d.ts';
/**
* The data for a Simple Icon as is exported by the npm package.
*/
export type SimpleIcon = {
title: string;
slug: string;
svg: string;
path: string;
source: string;
hex: string;
guidelines?: string;
license?: License;
};