intopays
Version:
Intopays - Gateway de integração bancária
16 lines (15 loc) • 451 B
TypeScript
import { IntopaysConstructor } from "../../app/Intopays";
import { Pix } from "../../core/models/Pix";
import { PageResponse } from "./helpers/PageResponse";
export declare class PixRemote {
constructor(config: IntopaysConstructor);
create(data: Pix): Promise<{
data: Pix;
}>;
search(data?: Partial<Pix>): Promise<{
data: PageResponse<Pix>;
}>;
find(id: number | string): Promise<{
data: Pix;
}>;
}