mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
34 lines
902 B
TypeScript
34 lines
902 B
TypeScript
// Type definitions for calq
|
|
// Project: https://calq.io/docs/client/javascript/reference
|
|
// Definitions by: Eirik Hoem <https://github.com/eirikhm>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
interface Calq
|
|
{
|
|
action:Calq.Action;
|
|
user:Calq.User;
|
|
|
|
init(writeKey:string, options?:{[index:string]:any}):void;
|
|
}
|
|
|
|
declare module Calq
|
|
{
|
|
interface Action
|
|
{
|
|
track(action:string, params?:{[index:string]:any}):void;
|
|
trackSale(action:string, params:{[index:string]:any}, currency:string, amount:number):void;
|
|
trackHTMLLink(action:string, params?:{[index:string]:any}):void;
|
|
trackPageView(action?:string):void;
|
|
setGlobalProperty(name:string,value:any):void;
|
|
}
|
|
|
|
interface User
|
|
{
|
|
identify(userId:string):void;
|
|
clear():void;
|
|
profile(params:{[index:string]:any}):void;
|
|
|
|
}
|
|
}
|
|
|
|
declare var calq:Calq; |