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