UNPKG

@pact-foundation/pact

Version:
8 lines (7 loc) 259 B
import { Matcher } from '../types'; import { XmlNode } from './xmlNode'; export declare class XmlText extends XmlNode { content: string; matcher?: Matcher<string> | undefined; constructor(content: string, matcher?: Matcher<string> | undefined); }