lint
This commit is contained in:
parent
c697079eb4
commit
7c62386915
2 changed files with 16 additions and 16 deletions
|
@ -20,24 +20,24 @@ class FakePosthog {
|
|||
}
|
||||
|
||||
export interface ITestEvent extends IAnonymousEvent {
|
||||
key: "jest_test_event",
|
||||
key: "jest_test_event";
|
||||
properties: {
|
||||
foo: string
|
||||
}
|
||||
foo: string;
|
||||
};
|
||||
}
|
||||
|
||||
export interface ITestPseudonymousEvent extends IPseudonymousEvent {
|
||||
key: "jest_test_pseudo_event",
|
||||
key: "jest_test_pseudo_event";
|
||||
properties: {
|
||||
foo: string
|
||||
}
|
||||
foo: string;
|
||||
};
|
||||
}
|
||||
|
||||
export interface ITestRoomEvent extends IRoomEvent {
|
||||
key: "jest_test_room_event",
|
||||
key: "jest_test_room_event";
|
||||
properties: {
|
||||
foo: string
|
||||
}
|
||||
foo: string;
|
||||
};
|
||||
}
|
||||
|
||||
describe("PosthogAnalytics", () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue