fantasy-console/cart.ts

12 lines
249 B
TypeScript
Raw Normal View History

2023-05-02 17:06:54 -07:00
import fakeCart from "./cart_unpacked.json" assert { type: "json" };
2023-05-05 14:59:52 -07:00
import { Sheet } from "./sheet.ts";
2023-05-02 17:06:54 -07:00
2023-05-05 14:59:52 -07:00
const cart = fakeCart as Array<Sheet>;
2023-05-02 17:06:54 -07:00
export const loadCart = (_name: string) => {
return;
}
export const getCart = () => {
return cart;
}