UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

12 lines 628 B
import { CreateGridRequest, GridSession } from '@sage-bionetworks/synapse-client'; export interface StartGridSessionProps { onSessionChange?: (session: GridSession | null) => void; onReplicaChange?: (replicaId: number | null) => void; show?: boolean; } export type StartGridSessionHandle = { handleStartSession: (request: CreateGridRequest) => void; handleLoadSession: (sessionId: string) => void; }; export declare const StartGridSession: import("react").ForwardRefExoticComponent<StartGridSessionProps & import("react").RefAttributes<StartGridSessionHandle>>; //# sourceMappingURL=StartGridSession.d.ts.map