Adds customProperty prop to CustomTheme closes #304

This commit is contained in:
MinamiFunakoshiTR 2025-05-20 10:44:59 -07:00
parent 04f396370e
commit 22d642a891
Failed to extract signature

View file

@ -50,4 +50,5 @@ export interface Theme {
export interface CustomTheme {
colour?: Partial<Colour>;
font?: Partial<CustomFont>;
[customProperty: string]: unknown;
}