UNPKG

@salesforce/acu-pack

Version:
14 lines (13 loc) 377 B
import { OptionsBase } from './options'; export declare class XPathRule { name: string; xPath: string; values: string[]; } export declare class XPathOptions extends OptionsBase { rules: Map<string, XPathRule[]>; constructor(); deserialize(serializedOptions: string): Promise<void>; serialize(): Promise<string>; loadDefaults(): Promise<void>; }