@spree/storefront-api-v2-sdk
Version:
Node module to easily integrate your JavaScript or TypeScript application with Spree API V2. You can create an entirely custom Storefront in JS/TS with this package including one page checkout, Single Page Apps, PWAs and so on
15 lines (14 loc) • 312 B
TypeScript
export declare const authParams: ({ username, password }: {
username: any;
password: any;
}) => {
username: any;
password: any;
grant_type: string;
};
export declare const refreshParams: ({ refresh_token }: {
refresh_token: any;
}) => {
refresh_token: any;
grant_type: string;
};