Merge pull request #308 from reuters-graphics/mf-theme

Adds customProperty prop to CustomTheme closes #304
This commit is contained in:
MinamiFunakoshiTR 2025-05-20 12:47:57 -05:00 committed by GitHub
commit b935ab2097
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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