UNPKG

oral-ts

Version:

a testing framework for typescript

19 lines (18 loc) 861 B
export { Equal } from "./decorators/equal"; export { True } from "./decorators/true"; export { Match } from "./decorators/match"; export { False } from "./decorators/false"; export { Contain } from "./decorators/contain"; export { Suite } from "./decorators/suit"; export { GreaterThan } from "./decorators/greaterThan"; export { LessThan } from "./decorators/lessThan"; export { Util } from "./decorators/util"; export { BeforeAll } from "./decorators/before"; export { AfterAll } from "./decorators/after"; export { Typeof } from "./decorators/typeof"; export { Instanceof } from "./decorators/instanceof"; export { Extend } from "./decorators/extend"; export { BeforeEach } from "./decorators/beforeEach"; export { AfterEach } from "./decorators/afterEach"; export { Test } from "./decorators/test"; export declare const oral: (args: Array<string>) => void;