保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 9bdb95c9e34cef640534e5e5a1e2225a80442000
PAMapp/node_modules/expect/build/asymmetricMatchers.d.ts
@@ -53,6 +53,13 @@
    toString(): string;
    getExpectedType(): string;
}
declare class CloseTo extends AsymmetricMatcher<number> {
    private precision;
    constructor(sample: number, precision?: number, inverse?: boolean);
    asymmetricMatch(other: number): boolean;
    toString(): string;
    getExpectedType(): string;
}
export declare const any: (expectedObject: unknown) => Any;
export declare const anything: () => Anything;
export declare const arrayContaining: (sample: Array<unknown>) => ArrayContaining;
@@ -63,4 +70,6 @@
export declare const stringNotContaining: (expected: string) => StringContaining;
export declare const stringMatching: (expected: string | RegExp) => StringMatching;
export declare const stringNotMatching: (expected: string | RegExp) => StringMatching;
export declare const closeTo: (expected: number, precision?: number | undefined) => CloseTo;
export declare const notCloseTo: (expected: number, precision?: number | undefined) => CloseTo;
export {};