diff options
Diffstat (limited to 'types')
-rw-r--r-- | types/ext/options-util.d.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/types/ext/options-util.d.ts b/types/ext/options-util.d.ts index 62cf5ab6..18201e18 100644 --- a/types/ext/options-util.d.ts +++ b/types/ext/options-util.d.ts @@ -24,3 +24,8 @@ export type IntermediateOptions = Core.SafeAny; export type LegacyUpdateFunction = (options: LegacyOptions) => void; export type UpdateFunction = (options: IntermediateOptions) => void | Promise<void>; + +export type TemplateFieldUpdate = { + version: number; + changes: string; +}; |