swagger-tests
Version:
A typescript framework for testing an api against a swagger 3.0 json file.
13 lines (12 loc) • 348 B
TypeScript
import { ApiSupport } from './api.support';
export declare class AttributeSupport {
protected apiSupport: ApiSupport;
constructor(apiSupport: ApiSupport);
valid(): Promise<any>;
invalid(): Promise<any>;
schema(): any;
sti_schema(): any;
required(): string[];
protected all(): string[];
protected faker(): any;
}