import { IVerifies } from "./IVerifies"; export interface IThrows { throws(exception: T): IThrowsResult; } export interface IThrowsResult extends IVerifies { }