feat(icon_pack): generate icon registry for client

This commit is contained in:
Elian Doran
2025-12-26 19:10:28 +02:00
parent e346963e76
commit e2f6f8a4e4
5 changed files with 62 additions and 4 deletions

View File

@@ -285,3 +285,14 @@ export interface RenderMarkdownResponse {
export interface ToMarkdownResponse {
markdownContent: string;
}
export interface IconRegistry {
sources: {
prefix: string;
name: string;
icons: {
id: string;
label: string;
}[]
}[];
}