UNPKG

httpyac

Version:

HTTP/REST CLI Client for *.http files

6 lines (5 loc) 364 B
import { Document, Node } from '@xmldom/xmldom'; import { Variables } from '../../models'; export declare function getNode(variableName: string | undefined, variables: Variables): Node | undefined; export declare function isNode(obj: unknown): obj is Node; export declare function parseFromString(xml: string, mimeType?: string | undefined): Document | undefined;