From d033dfcfc1d2ced39b2733898e8d85ad5984c9e9 Mon Sep 17 00:00:00 2001 From: Spencer Kaiser Date: Fri, 6 May 2022 10:54:31 -0500 Subject: [PATCH] fix: Fix type issue with ManipulateType (#1864) --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 86b3cfe0c..1ac6c8dac 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -29,7 +29,7 @@ declare namespace dayjs { export type OpUnitType = UnitType | "week" | "weeks" | 'w'; export type QUnitType = UnitType | "quarter" | "quarters" | 'Q'; - export type ManipulateType = Omit; + export type ManipulateType = Exclude; class Dayjs { constructor (config?: ConfigType) /**