Add react-amplitude definition

This commit is contained in:
Raymond Ho
2018-06-12 09:59:20 +10:00
parent 3b8b13474e
commit c626cf8998
4 changed files with 45 additions and 0 deletions

22
types/react-amplitude/index.d.ts vendored Normal file
View File

@@ -0,0 +1,22 @@
// Type definitions for react-amplitude 0.1
// Project: https://github.com/rorygarand/react-amplitude
// Definitions by: Raymond Ho <https://github.com/rayzor65>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export interface AmplitudeInstance {
init(apiKey: string, userId?: string, config?: any, cb?: () => void): void;
amplitude(): void;
clearUserProperties(): void;
getSessionId(): void;
identify(idObj: any, cb: () => void): void;
isNewSession(): void;
logEvent(eventType: string, eventProperties: {}, cb: () => void): void;
logEventWithTimestamp(eventType: string, eventProperties: {}, timestamp: number, cb: () => void): void;
resetUserId(): void;
setUserId(userId: string): void;
setUserProperties(userProps: any): void;
}
declare const Amplitude: AmplitudeInstance;
export default Amplitude;

View File

@@ -0,0 +1,22 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"react-amplitude-tests.ts"
]
}

View File

@@ -0,0 +1 @@
{ "extends": "dtslint/dt.json" }