UNPKG

flagpole

Version:

Simple and fast DOM integration and REST API testing framework.

10 lines (9 loc) 310 B
import { SimplifiedResponse } from "./response"; export declare class Mock implements SimplifiedResponse { url: string; statusCode: number; body: string; headers: Array<any>; protected constructor(url: string, body: string); static loadLocalFile(relativePath: string): Promise<Mock>; }