UNPKG

sinch-rtc

Version:

RTC JavaScript/Web SDK

7 lines (6 loc) 202 B
import { UserInstance } from "../instance/UserInstance"; export interface InstanceStorage { set: (instance: UserInstance) => void; remove: () => void; get: () => UserInstance | undefined; }