mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-03 11:07:00 -04:00
14 lines
438 B
TypeScript
14 lines
438 B
TypeScript
declare module '@fortawesome/fontawesome-pro/metadata/icons.yml' {
|
|
export type IconStyle = 'solid' | 'regular' | 'light' | 'duotone' | 'brands';
|
|
interface IconMetadata {
|
|
changes: string[];
|
|
label: string;
|
|
search: { terms: string[] };
|
|
styles: IconStyle[];
|
|
unicode: string;
|
|
voted: boolean;
|
|
}
|
|
const iconMetadata: Record<string, IconMetadata>;
|
|
export default iconMetadata;
|
|
}
|