UNPKG

@saleor/app-sdk

Version:
15 lines (12 loc) 289 B
import { APL } from './APL/index.mjs'; interface HasAPL { apl: APL; } interface SaleorAppParams { apl: APL; } declare class SaleorApp implements HasAPL { readonly apl: APL; constructor(options: SaleorAppParams); } export { type HasAPL, SaleorApp, type SaleorAppParams };