UNPKG

@csegames/camelot-unchained

Version:

Camelot Unchained Client Library

15 lines (14 loc) 539 B
export * from './SignalRHub'; export * from './hubs/groupsHub'; export * from './hubs/patcherHub'; export * from './hubs/warbandsHub'; export interface InitCallback { (succeeded: boolean): any; } export declare const initializeSignalR: (signalRHost?: string) => void; export declare const reinitializeSignalR: (signalRHost?: string) => void; export declare const initializeSignalRHubs: (...hubs: { name: string; callback: InitCallback; }[]) => void; export declare const unregisterSignalRHubs: (...hubNames: string[]) => void;