UNPKG

@nodescript/core

Version:

Visual programming language for Browser and Node

10 lines (9 loc) 273 B
import { Schema } from 'airtight'; import { HttpDict } from './HttpDict.js'; export interface ResponseSpec { status: number; headers: HttpDict; body: any; attributes?: Record<string, string>; } export declare const ResponseSpecSchema: Schema<ResponseSpec>;