@betalytics/api
Version:
TypeScript SDK for Betalytics API - Sports analytics and betting data
9 lines • 377 B
TypeScript
export type AuthToken = string | undefined;
export interface Auth {
in?: 'header' | 'query' | 'cookie';
name?: string;
scheme?: 'basic' | 'bearer';
type: 'apiKey' | 'http';
}
export declare const getAuthToken: (auth: Auth, callback: ((auth: Auth) => Promise<AuthToken> | AuthToken) | AuthToken) => Promise<string | undefined>;
//# sourceMappingURL=auth.d.ts.map