tstyche
Version:
Everything You Need for Type Testing.
9 lines (7 loc) • 362 B
TypeScript
/**
* Runs TSTyche in the same process, streaming error messages and test results to the `stderr` and `stdout` in real-time.
*
* @returns A promise that resolves if the test run is successful and rejects if it fails.
*/
declare function tstyche(template: TemplateStringsArray, ...substitutions: Array<string>): Promise<void>;
export { tstyche as default };