mirror of
https://github.com/OpenHands/OpenHands.git
synced 2026-03-22 13:47:19 +08:00
Co-authored-by: openhands <openhands@all-hands.dev> Co-authored-by: Ray Myers <ray.myers@gmail.com>
8 lines
157 B
TypeScript
8 lines
157 B
TypeScript
/// <reference types="react-scripts" />
|
|
|
|
interface Window {
|
|
posthog?: {
|
|
capture: (event: string, properties?: Record<string, unknown>) => void;
|
|
};
|
|
}
|