cnchar/testUtils/types.d.ts

7 lines
144 B
TypeScript

import ICnChar from 'cnchar-types';
export interface IStrictTestCase {
name: string;
test(cnchar: ICnChar): any[];
expect: any[];
}