send-sls-logger 0.0.6 → 0.0.7
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/index.d.ts +4 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -10,9 +10,7 @@ interface initConfig {
|
|
|
10
10
|
options?: WebTrackerBrowserOptions;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
export function init(config: initConfig): void;
|
|
18
|
-
}
|
|
13
|
+
export function error(str: string | StringObject): void;
|
|
14
|
+
export function warn(str: string | StringObject): void;
|
|
15
|
+
export function log(str: string | StringObject): void;
|
|
16
|
+
export function init(config: initConfig): void;
|