@a11ywatch/core
Version:
a11ywatch central API
9 lines (8 loc) • 448 B
TypeScript
import type { Issue } from "../../../../types/schema";
export declare const getIssue: ({ url, pageUrl, userId, noRetries }: any, chain?: boolean) => Promise<any>;
export declare const getIssues: ({ userId, domain, pageUrl, }: {
userId: number;
domain?: string;
pageUrl?: string;
}, limit?: number) => Promise<import("mongodb").WithId<import("bson").Document>[]>;
export declare const getIssuesPaging: (params: any) => Promise<Issue[]>;