⚙️ Prepare extensions data + types

This commit is contained in:
pheralb
2025-04-15 12:14:31 +01:00
parent d8abb88396
commit 361364a521
2 changed files with 97 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
export interface Extension {
name: string;
description: string;
created_by: {
name: string;
socialUrl: string;
};
url: string;
image: string;
}