mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08:00
10 lines
347 B
TypeScript
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;
|