-
Notifications
You must be signed in to change notification settings - Fork 0
/
XapiBasket.ts
34 lines (29 loc) · 1.69 KB
/
XapiBasket.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
* Copyright (c) 2023. Selldone® Business OS™
*
* Author: M.Pajuhaan
* Web: https://selldone.com
* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*
* All rights reserved. In the weave of time, where traditions and innovations intermingle, this content was crafted.
* From the essence of thought, through the corridors of creativity, each word, and sentiment has been molded.
* Not just to exist, but to inspire. Like an artist's stroke or a sculptor's chisel, every nuance is deliberate.
* Our journey is not just about reaching a destination, but about creating a masterpiece.
* Tread carefully, for you're treading on dreams.
*/
import {APIAbstract} from "@selldone/core-js/server/APIAbstract";
import XapiBasketAddItem from "./add-item/XapiBasketAddItem";
import XapiBasketDeleteItem from "./delete-item/XapiBasketDeleteItem";
export class XapiBasket extends APIAbstract {
public shop_name: string;
public addItem = XapiBasketAddItem;
public deleteItem = XapiBasketDeleteItem;
constructor(shop_name: string) {
super();
this.shop_name = shop_name;
}
}
//█████████████████████████████████████████████████████████████
//―――――――――――――――― 🦫 Types ――――――――――――――――
//█████████████████████████████████████████████████████████████
export namespace XapiBasketTypes {}