diff options
Diffstat (limited to 'types')
-rw-r--r-- | types/ext/settings-modifications.d.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/types/ext/settings-modifications.d.ts b/types/ext/settings-modifications.d.ts index becfea5c..e70ff7e8 100644 --- a/types/ext/settings-modifications.d.ts +++ b/types/ext/settings-modifications.d.ts @@ -97,7 +97,10 @@ export type ModificationSpliceResult = unknown[]; export type ModificationPushResult = number; +// There is some redundancy with this type currently due to the `unknown`s used in it. +// For now, this is fine, but the types could be improved in the future. export type ModificationResult = ( + // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents ModificationSetResult | ModificationDeleteResult | // eslint-disable-next-line @typescript-eslint/no-duplicate-type-constituents |