product-fruits
Advanced tools
Comparing version 1.0.14 to 1.0.15
{ | ||
"name": "product-fruits", | ||
"version": "1.0.14", | ||
"version": "1.0.15", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
export type ProductFruitsPushObject = Array<any> & { | ||
} | ||
declare global { | ||
type ProductFruitsPushObject = Array<any> & { | ||
} | ||
export type Options = { | ||
disableLocationChangeDetection?: boolean; | ||
type ProductFruitsInitOptions = { | ||
disableLocationChangeDetection?: boolean; | ||
} | ||
} | ||
@@ -13,3 +15,3 @@ | ||
declare const productFruits: { | ||
init: (workspaceCode: string, language: string, userObject: any, options?: Options) => void, | ||
init: (workspaceCode: string, language: string, userObject: any, options?: ProductFruitsInitOptions) => void, | ||
safeExec: (callback: ($productFruits: ProductFruitsPushObject) => void) => void | ||
@@ -16,0 +18,0 @@ } |
3207
47