Skip to content

Commit

Permalink
Remove unnecessary moment. qualification in typings
Browse files Browse the repository at this point in the history
  • Loading branch information
cspotcode committed Jun 12, 2019
1 parent ed968e8 commit 10a4ceb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ declare module 'moment' {
// Should be sorted from tightest to loosest. TypeScript picks the first signature that matches, going top to bottom.

/** create a moment with a time zone */
function tz(inp: moment.MomentInput, format: moment.MomentFormatSpecification, language: string, strict: boolean, zone: string): moment.Moment;
function tz(inp: MomentInput, format: MomentFormatSpecification, language: string, strict: boolean, zone: string): Moment;
/** create a moment with a time zone */
function tz(inp: moment.MomentInput, format: moment.MomentFormatSpecification, language: string, zone: string): moment.Moment;
function tz(inp: MomentInput, format: MomentFormatSpecification, language: string, zone: string): Moment;
/** create a moment with a time zone */
function tz(inp: moment.MomentInput, format: moment.MomentFormatSpecification, strict: boolean, zone: string): moment.Moment;
function tz(inp: MomentInput, format: MomentFormatSpecification, strict: boolean, zone: string): Moment;
/** create a moment with a time zone */
function tz(inp: moment.MomentInput, format: moment.MomentFormatSpecification, zone: string): moment.Moment;
function tz(inp: MomentInput, format: MomentFormatSpecification, zone: string): Moment;
/** create a moment with a time zone */
function tz(inp: moment.MomentInput, zone: string): moment.Moment;
function tz(inp: MomentInput, zone: string): Moment;
/** create a moment with a time zone */
function tz(zone?: string): moment.Moment;
function tz(zone?: string): Moment;

namespace tz {
/** Version of moment-timezone */
Expand Down

0 comments on commit 10a4ceb

Please sign in to comment.