UNPKG
@zencemarketing/web-sdk
Version:
latest (1.0.1)
1.0.1
1.0.0
ZenceMarketing Web SDK for push notifications, popups, and custom event tracking.
@zencemarketing/web-sdk
/
dist
/
methods
/
init.d.ts
6 lines
(5 loc)
•
262 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
InitData
,
SDKData
,
SDKResponse
}
from
"../types/types.js"
;
declare
function
init
(
data
:
InitData
):
Promise
<
SDKResponse
>;
declare
const
getAuthToken
:
() =>
string
|
null
;
declare
const
getSdkData
:
() =>
SDKData
;
export
{ init, getSdkData, getAuthToken };