@clickaroo/checkout-ui 1.0.0-beta → 1.0.1-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +0 -8
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -296,14 +296,6 @@ interface ClickarooProviderConfig {
|
|
|
296
296
|
interface ClickarooContextType {
|
|
297
297
|
/** Get parameter value */
|
|
298
298
|
getParam: (paramName: string) => string | null;
|
|
299
|
-
/** Set parameter value (saved according to storage priority) */
|
|
300
|
-
setParam: (paramName: string, value: string) => void;
|
|
301
|
-
/** Get all parameters */
|
|
302
|
-
getAllParams: () => Record<string, string>;
|
|
303
|
-
/** Clear parameter */
|
|
304
|
-
clearParam: (paramName: string) => void;
|
|
305
|
-
/** Clear all parameters */
|
|
306
|
-
clearAllParams: () => void;
|
|
307
299
|
/** Current parameter values (read-only) */
|
|
308
300
|
params: Record<string, string>;
|
|
309
301
|
}
|