datasquirel/dist/client/auth/github/getAccessToken.d.ts
Benjamin Toby a3561da53d Updates
2025-01-10 20:35:05 +01:00

14 lines
442 B
TypeScript

type Param = {
clientId: string;
redirectUrl: string;
setLoading?: (arg0: boolean) => void;
scopes?: string[];
};
/**
* Login with Github Function
* ===============================================================================
* @description This function uses github api to login a user with datasquirel
*/
export default function getAccessToken({ clientId, redirectUrl, setLoading, scopes, }: Param): void;
export {};