UNPKG

@kwiz/common

Version:

KWIZ common utilities and helpers for M365 platform

12 lines (10 loc) 386 B
interface IMomentJSObj { toDate: () => Date; isValid: () => boolean; } export type typeMomentJS = (inp?: string, format?: string, strict?: boolean) => IMomentJSObj; export type typeMonentJSTimeZone = (inp?: string, format?: string, strict?: boolean) => IMomentJSObj; declare global { var momentJS: typeMomentJS; var monentJSTimeZone: typeMonentJSTimeZone; }