allow unknown type on theme

This commit is contained in:
hobbes7878 2025-05-21 09:48:30 +01:00
parent 843e3d81bc
commit 92c710ef5d
Failed to extract signature

View file

@ -47,12 +47,8 @@ export interface Theme {
font: Font;
}
export interface CustomProperties {
[key: string]: string | number | boolean | object | [];
}
export interface CustomTheme {
colour?: Partial<Colour>;
font?: Partial<CustomFont>;
customProperties?: CustomProperties;
customProperties?: unknown;
}