@nlabs/gothamjs
Version:
Platform
13 lines (12 loc) • 485 B
TypeScript
/**
* Copyright (c) 2018-Present, Nitrogen Labs, Inc.
* Copyrights licensed under the MIT License. See the accompanying LICENSE file for terms.
*/
import { type FluxFramework } from '@nlabs/arkhamjs';
export interface GothamContextProps {
readonly children?: React.ReactNode;
readonly Flux: FluxFramework;
readonly isAuth?: () => boolean;
readonly session?: Record<string, unknown>;
}
export declare const GothamContext: import("react").Context<GothamContextProps>;