diff --git a/types/index.d.ts b/types/index.d.ts
index 22c919b8f..3d318103d 100644
--- a/types/index.d.ts
+++ b/types/index.d.ts
@@ -1,7 +1,12 @@
 /// <reference path="./locale/index.d.ts" />
 
 export = dayjs;
-declare function dayjs (date?: dayjs.ConfigType, option?: dayjs.OptionType, locale?: string): dayjs.Dayjs
+
+declare function dayjs (date?: dayjs.ConfigType): dayjs.Dayjs
+
+declare function dayjs (date?: dayjs.ConfigType, format?: dayjs.OptionType, strict?: boolean): dayjs.Dayjs
+
+declare function dayjs (date?: dayjs.ConfigType, format?: dayjs.OptionType, locale?: string, strict?: boolean): dayjs.Dayjs
 
 declare namespace dayjs {
   export type ConfigType = string | number | Date | Dayjs