import ActionCable from "./ActionCable"; import Api from "./Api"; import Helper from "./Helper"; export interface IOption extends IDefaultOption { accessToken: string; } interface IDefaultOption { baseUrl?: string; cableUrl?: string; autoReconnect?: boolean; streamTimeoutSec?: number; } export default class KokoroIo { private kokoro; Stream: ActionCable; Api: Api; Helper: Helper; constructor(option: IOption); } export {};