UNPKG

@launchmenu/core

Version:

An environment for visual keyboard controlled applets

9 lines 510 B
/// <reference types="react" /> import { LMSession } from "../LMSession/LMSession"; /** A context to store the current LM session instance in */ export declare const LMSessionContext: import("react").Context<LMSession | null>; /** A provider for the LM session instance */ export declare const LMSessionProvider: import("react").Provider<LMSession | null>; /** A hook to get the LM session instance */ export declare function useLMSession(): null | LMSession; //# sourceMappingURL=useLMSession.d.ts.map