@nodescript/core
Version:
Visual programming language for Browser and Node
12 lines (11 loc) • 327 B
TypeScript
import { Schema } from 'airtight';
import { HttpDict } from './HttpDict.js';
import { RequestMethod } from './RequestMethod.js';
export interface RequestSpec {
method: RequestMethod;
path: string;
query: HttpDict;
headers: HttpDict;
body: any;
}
export declare const RequestSpecSchema: Schema<RequestSpec>;