refactor: theme type

This commit is contained in:
Gabriellvl 2025-04-02 14:29:07 +02:00
parent dadde1651b
commit 30c253c43c
5 changed files with 20 additions and 17 deletions

4
common/src/interfaces/theme.d.ts vendored Normal file
View file

@ -0,0 +1,4 @@
export interface Theme {
title: string;
hruids: string[];
}