@trycourier/courier-js
Version:
A browser-safe API wrapper
13 lines (12 loc) • 381 B
TypeScript
import { CourierBrand } from '../types/brands';
import { Client } from './client';
export declare class BrandClient extends Client {
/**
* Get a brand by ID using GraphQL
* @param brandId - The ID of the brand to retrieve
* @returns Promise resolving to the requested brand
*/
getBrand(props: {
brandId: string;
}): Promise<CourierBrand>;
}