mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 20:35:24 +00:00
17 lines
396 B
TypeScript
17 lines
396 B
TypeScript
|
|
/* eslint-disable @typescript-eslint/no-empty-object-type */
|
||
|
|
|
||
|
|
export type PosthogEventMap = {
|
||
|
|
repo_created: {
|
||
|
|
vcs: string;
|
||
|
|
codeHost?: string;
|
||
|
|
},
|
||
|
|
repo_synced: {
|
||
|
|
vcs: string;
|
||
|
|
codeHost?: string;
|
||
|
|
fetchDuration_s?: number;
|
||
|
|
cloneDuration_s?: number;
|
||
|
|
indexDuration_s?: number;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export type PosthogEvent = keyof PosthogEventMap;
|