intopays
Version:
Intopays - Gateway de integração bancária
18 lines (17 loc) • 503 B
TypeScript
import { Boleto, IntopaysConstructor } from "../../app/Intopays";
import { PageResponse } from "./helpers/PageResponse";
export declare class BoletoRemote {
constructor(config: IntopaysConstructor);
create(data: Boleto): Promise<{
data: Boleto;
}>;
search(data?: Partial<Boleto>): Promise<{
data: PageResponse<Boleto>;
}>;
find(id: number | string): Promise<{
data: Boleto;
}>;
void(id: number | string): Promise<{
data: Boleto;
}>;
}