cnchar/testUtils/types.d.ts

7 lines
144 B
TypeScript
Raw Permalink Normal View History

2021-01-18 11:57:53 +08:00
import ICnChar from 'cnchar-types';
export interface IStrictTestCase {
name: string;
test(cnchar: ICnChar): any[];
expect: any[];
}