4
0
forked from crowetic/commerce
2020-09-29 21:41:26 -05:00

10 lines
169 B
TypeScript

export interface CommerceAPI {
getAllProducts(query: string): Promise<any>;
}
// export default class CommerceAPI {
// getAllProducts(query: string) {
// }
// }