UNPKG

mercadopago

Version:
9 lines (8 loc) 316 B
import { OrderGetClient } from './types'; import { OrderResponse } from '../commonTypes'; /** * Retrieve a single order by its unique identifier. * * @returns The full order representation including transactions and status. */ export default function get({ id, config }: OrderGetClient): Promise<OrderResponse>;