UNPKG

@saleor/app-sdk

Version:

SDK for building great Saleor Apps

15 lines (12 loc) 288 B
import { APL } from './APL/index.js'; 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 };