8 lines
238 B
Plaintext
8 lines
238 B
Plaintext
import { StrategyInterface, Token, Authentication } from "./types";
|
|
export type Types = {
|
|
StrategyOptions: Token;
|
|
AuthOptions: never;
|
|
Authentication: Authentication;
|
|
};
|
|
export declare const createTokenAuth: StrategyInterface;
|