@chrisreedio/fontawesome-pro-mcp
Version:
Font Awesome Pro MCP Server for icon search and retrieval
22 lines • 489 B
TypeScript
export interface FAIcon {
name: string;
style: string;
label?: string;
search?: {
terms: string[];
};
unicode?: string;
svg?: string;
}
export interface IconMetadata {
[key: string]: {
label?: string;
search?: {
terms: string[];
};
unicode?: string;
styles: string[];
};
}
export type FAStyle = 'solid' | 'regular' | 'light' | 'thin' | 'duotone' | 'brands';
//# sourceMappingURL=types.d.ts.map