mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 07:26:59 +00:00
12 lines
197 B
TypeScript
12 lines
197 B
TypeScript
export const localProvider = {
|
|
locale: 'en-us',
|
|
cartCookie: '',
|
|
fetcher: () => {},
|
|
cart: {},
|
|
customer: {},
|
|
products: {},
|
|
auth: {},
|
|
}
|
|
|
|
export type LocalProvider = typeof localProvider
|