Themes: improve ability of 'rewrite' config

This commit is contained in:
Pieter Vander Vennet 2023-12-12 03:43:55 +01:00
parent 5da895276c
commit f015604000
5 changed files with 335 additions and 161 deletions

View file

@ -47,5 +47,6 @@ export default interface RewritableConfigJson<T> {
sourceString: string[]
into: (string | any)[][]
}
renderings: T
subexpand?: Record<string, string[]>
renderings: T | T[]
}