scraper-jsc
Version:
Node Scraper With javaScript
24 lines (20 loc) • 378 B
TypeScript
import FormData from "form-data";
declare function textpro(
url: string,
text: string[]
): Promise<{
developer: string,
status: boolean,
result: {
image: string,
image_code: string,
}
}>;
declare function post(
url: string,
formdata?: Record<string, string | string[]>,
cookies?: string
): Promise<any>;
export {
textpro
};