Current section
Files
Jump to
Current section
Files
priv/static/session.d.ts
export type TSession = {
/**
* Phoenix LiveView callback.
*/
mounted: () => void;
};
export declare const Session: {
mounted(): void;
};
declare global {
interface Window {
Session?: TSession;
}
}