mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-17 22:44:18 +08:00
45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
// Type definitions for SockJS 0.3.x
|
|
// Project: https://github.com/sockjs/sockjs-client
|
|
// Definitions by: Emil Ivanov <https://github.com/vladev>
|
|
// DefinitelyTyped: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
interface SockJSSimpleEvent {
|
|
type: string;
|
|
toString(): string;
|
|
}
|
|
|
|
interface SJSOpenEvent extends SockJSSimpleEvent {}
|
|
|
|
interface SJSCloseEvent extends SockJSSimpleEvent {
|
|
code: number;
|
|
reason: string;
|
|
wasClean: boolean;
|
|
}
|
|
|
|
interface SJSMessageEvent extends SockJSSimpleEvent {
|
|
data: string;
|
|
}
|
|
|
|
interface SockJS extends EventTarget {
|
|
protocol: string;
|
|
readyState: number;
|
|
onopen: (ev: SJSOpenEvent) => any;
|
|
onmessage: (ev: SJSMessageEvent) => any;
|
|
onclose: (ev: SJSCloseEvent) => any;
|
|
send(data: any): void;
|
|
close(code?: number, reason?: string): void;
|
|
OPEN: number;
|
|
CLOSING: number;
|
|
CONNECTING: number;
|
|
CLOSED: number;
|
|
}
|
|
|
|
declare var SockJS: {
|
|
prototype: SockJS;
|
|
new (url: string, options?: {
|
|
debug: boolean;
|
|
devel: boolean;
|
|
protocols_whitelist: string[];
|
|
}): SockJS;
|
|
|
|
} |