pancake-client-sdk
Version:
Official TypeScript SDK for Pancake POS API
12 lines (11 loc) • 361 B
TypeScript
import { IHttpClient } from '../core/client-interface';
export declare abstract class BaseResource {
protected readonly client: IHttpClient & {
shopId?: string;
};
protected readonly shopId?: string;
constructor(client: IHttpClient & {
shopId?: string;
});
protected getShopPath(path: string, shopId?: string): string;
}