UNPKG

@squadco/js

Version:

Simplify the integration process with Squad's comprehensive payment solutions using the Squad JavaScript SDK.

24 lines (23 loc) 532 B
import type { BaseResponseProps } from "./base-response"; export interface PosInterface { id: string; amount: number; status: number; card: string; createdAt: Date; updatedAt: Date; deletedAt: null; merchant_id: string; terminal_id: string; location_id: string; } export interface PosInterfaceResponseProps extends BaseResponseProps { data: { count: number; rows: PosInterface[]; query: { page: number; perPage: number; }; }; }