mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-22 08:26:35 +08:00
42 lines
1.6 KiB
TypeScript
42 lines
1.6 KiB
TypeScript
// Type definitions for chai-datetime
|
|
// Project: https://github.com/gaslight/chai-datetime.git
|
|
// Definitions by: Cliff Burger <https://github.com/cliffburger>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="chai" />
|
|
|
|
declare function chaiDateTime(chai: any, utils: any): void;
|
|
export = chaiDateTime;
|
|
|
|
declare global {
|
|
namespace Chai {
|
|
interface Assertion {
|
|
afterDate(date: Date): Assertion;
|
|
beforeDate(date: Date): Assertion;
|
|
equalDate(date: Date): Assertion;
|
|
afterTime(date: Date): Assertion;
|
|
beforeTime(date: Date): Assertion;
|
|
equalTime(date: Date): Assertion;
|
|
}
|
|
|
|
interface Assert {
|
|
equalTime(val: Date, exp: Date, msg?: string): void;
|
|
notEqualTime(val: Date, exp: Date, msg?: string): void;
|
|
beforeTime(val: Date, exp: Date, msg?: string): void;
|
|
notBeforeTime(val: Date, exp: Date, msg?: string): void;
|
|
afterTime(val: Date, exp: Date, msg?: string): void;
|
|
notAfterTime(val: Date, exp: Date, msg?: string): void;
|
|
equalDate(val: Date, exp: Date, msg?: string): void;
|
|
notEqualDate(val: Date, exp: Date, msg?: string): void;
|
|
beforeDate(val: Date, exp: Date, msg?: string): void;
|
|
notBeforeDate(val: Date, exp: Date, msg?: string): void;
|
|
afterDate(val: Date, exp: Date, msg?: string): void;
|
|
notAfterDate(val: Date, exp: Date, msg?: string): void;
|
|
}
|
|
}
|
|
|
|
interface Date {
|
|
should: Chai.Assertion;
|
|
}
|
|
}
|