13 lines
243 B
TypeScript
13 lines
243 B
TypeScript
export type TestCaseBadString = {
|
|
name: string;
|
|
bytes: Uint8Array;
|
|
ignore: string;
|
|
replace: string;
|
|
error: string;
|
|
};
|
|
export type TestCaseCodePoints = {
|
|
name: string;
|
|
text: string;
|
|
codepoints: Array<number>;
|
|
};
|