7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
import ICnChar from 'cnchar-types';
|
|
|
|
export interface IStrictTestCase {
|
|
name: string;
|
|
test(cnchar: ICnChar): any[];
|
|
expect: any[];
|
|
} |