syphonx-core
Version:
SyphonX is a template-driven solution for extracting data from HTML in a highly efficient way. It combines the power of jQuery, Regular Expressions, and Javascript into a declarative template-driven format that extracts and reshapes HTML data into JSON.
15 lines (14 loc) • 377 B
TypeScript
import { SelectFormat, SelectQuery, SelectType } from "../public/index.js";
export interface QueryParams {
query?: SelectQuery[];
type?: SelectType;
repeated?: boolean;
all?: boolean;
format?: SelectFormat;
pattern?: string;
limit?: number | null;
distinct?: boolean;
negate?: boolean;
removeNulls?: boolean;
hits?: number | null;
}