yarle-evernote-to-md
Version:
Yet Another Rope Ladder from Evernote
11 lines (9 loc) • 300 B
text/typescript
import { YarleOptions } from "../src/YarleOptions";
import { YarleTestModifierOptions } from './yarle-test-modifier-options';
export interface YarleTest {
options: YarleOptions;
testModifier?: YarleTestModifierOptions;
expectedOutputPath?: string;
testOutputPath: string;
name: string;
}