Installation
npm install --save @types/alcides
Summary
This package contains type definitions for alcides (https://github.com/asaidimu/alcides).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/alcides.
index.d.ts
/// <reference types="chai" />
interface SuiteFunction {
(description: string, cb: () => void): void;
}
interface TestFunction {
(description: string, cb: (state: any) => void): void;
}
interface SetUpHook {
(cb: () => any): void;
}
interface TearDownHook {
(cb: (state: any) => void): void;
}
declare var assert: Chai.AssertStatic;
declare var suite: SuiteFunction;
declare var test: TestFunction;
declare var setUp: SetUpHook;
declare var tearDown: TearDownHook;
Additional Details
- Last updated: Mon, 06 Nov 2023 22:41:04 GMT
- Dependencies: @types/chai
Credits
These definitions were written by saidimu.