@getpassage/react-native
Version:
Passage React Native SDK for mobile authentication
10 lines (9 loc) • 349 B
TypeScript
import React from "react";
import type { PassageConfig, PassageContextValue } from "./types";
export declare const PassageContext: React.Context<PassageContextValue | null>;
interface PassageProviderProps {
children: React.ReactNode;
config?: PassageConfig;
}
export declare const PassageProvider: React.FC<PassageProviderProps>;
export {};