Farenheith/strict-mocha-describers

View on GitHub
src/types/describe-struct.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { StaticMethodSuite } from './static-method-suite';
import { BaseMochaType } from './base-mocha-function';

export interface DescribeStructBase {
  <Struct>(
    struct: Struct,
    description: string,
    fn: (describe: StaticMethodSuite<Struct>) => void,
  ): void;
}

export interface DescribeStruct extends BaseMochaType<DescribeStructBase> {}