This commit is contained in:
Martin
2023-01-12 10:12:47 +01:00
parent f0b4387b77
commit 7d5eac78fb
10 changed files with 258 additions and 1 deletions

View File

@@ -0,0 +1,39 @@
declare global {
const ID: Y8API.ID;
interface Window {
idAsyncInit: () => void;
}
}
export namespace Y8API {
export interface ID {
init: (appInfo: { appId: string }) => void;
getLoginStatus: (callback: (response?: Authorization) => void, skipCache?: boolean) => void;
login: (callback: (response?: Authorization) => void) => void;
register: (callback: (response?: Authorization) => void) => void;
Event: Event;
Analytics: Analytics;
}
export interface Event {
subscribe: (eventName: string, callback: (response?: any) => void) => void;
}
export interface Analytics {
custom_event: (name: string, data?: string | number) => void;
}
export interface Authorization {
status: string;
success?: boolean;
authResponse: {
state: string;
access_token: string;
token_type: string;
expires_in: number;
scope: string;
redirect_uri: string;
details: any;
};
}
}