mirror of
https://github.com/Dan6erbond/sk-auth.git
synced 2025-04-28 01:15:35 +02:00
7 lines
243 B
TypeScript
7 lines
243 B
TypeScript
import type { ClientRequestConfig } from "./types";
|
|
interface SignInConfig extends ClientRequestConfig {
|
|
redirectUrl?: string;
|
|
}
|
|
export declare function signIn(provider: string, data?: any, config?: SignInConfig): Promise<any>;
|
|
export {};
|