changes customProperty to key in CustomTheme type interface

This commit is contained in:
MinamiFunakoshiTR 2025-05-20 13:32:11 -07:00
parent b935ab2097
commit 6471bbf93e
Failed to extract signature

View file

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