Files
DefinitelyTyped/mockdate/index.d.ts
BrunoLM a1cbc2a5dc Add definitions for mockdate package (#13754)
* Add mockdate package definition file

* Fix mockdate comments

* Apply revision checks on mockdate

Add tslint.json
Enable strciNullChecks
Change definition to export functions intead of default.

* Fix mockdate to export as namespace
2017-01-05 08:30:40 -08:00

19 lines
664 B
TypeScript

// Type definitions for mockdate 2.0
// Project: https://github.com/boblauer/MockDate
// Definitions by: Bruno Leonardo Michels <https://github.com/brunolm>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export as namespace MockDate;
/**
* Change the Date implementation to mock a specific date.
* @param Date to be set as current
* @param timezoneOffset? The value that should be returned by new Date().getTimezoneOffset()
*/
export function set(date: { valueOf(): number; } | number | string, timezoneOffset?: number): void;
/**
* Restore the original Date object back to the native implementation.
*/
export function reset(): void;