Files
DefinitelyTyped/tz-format/index.d.ts
2016-10-25 03:18:27 -07:00

10 lines
347 B
TypeScript

// Type definitions for tz-format
// Project: https://github.com/SamVerschueren/tz-format
// Definitions by: Sam Verschueren <https://github.com/samverschueren>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function format(date?: Date | number, offset?: number): string;
declare namespace format {}
export = format;