mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-25 21:36:52 +08:00
19 lines
435 B
TypeScript
19 lines
435 B
TypeScript
interface Window {
|
|
__APP_MODE__?: "saas" | "oss";
|
|
__GITHUB_CLIENT_ID__?: string | null;
|
|
Reo?: {
|
|
init: (config: { clientID: string }) => void;
|
|
identify: (identity: {
|
|
username: string;
|
|
type: "github" |"email";
|
|
other_identities?: Array<{
|
|
username: string;
|
|
type: "github" | "email";
|
|
}>;
|
|
firstname?: string;
|
|
lastname?: string;
|
|
company?: string;
|
|
}) => void;
|
|
};
|
|
}
|