@apicart/store-sdk
Version:
Apicart SDK for integrating store into any web application
25 lines (13 loc) • 421 B
TypeScript
import ShippingMethod from '../../../Entity/Shipping/ShippingMethod';
interface ShippingMethodDaoInterface
{
getEntity(): Promise<ShippingMethod | null>;
getDescription(): Promise<string | null>;
getId(): number;
getUid(): Promise<string | null>;
getImage(): Promise<string | null>;
getName(): Promise<string>;
getPrice(): Promise<number>;
getSort(): Promise<number>;
isEnabled(): Promise<boolean>;
}