-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSWFAddress.d.ts
More file actions
35 lines (33 loc) · 1.11 KB
/
SWFAddress.d.ts
File metadata and controls
35 lines (33 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//TypeScript definitions for SWFAddress
interface ISWFAddress {
addEventListener(type: string, listener: any, useCapture: bool, priority: number, useWeakReference: bool): void;
back(): void;
dispatchEvent(event: Event): bool;
forward(): void;
up(): void;
getBaseURL(): string;
getHistory(): bool;
getParameter(param: string): any;
getParameterNames(): Array;
getPath(): string;
getPathNames(): Array;
getQueryString(): string;
getStatus(): string;
getStrict(): bool;
getTitle(): string;
getTracker(): string;
getValue(): string;
go(delta: number): void;
hasEventListener(type: string): bool;
href(url: string, target: string): void;
popup(url: string, name: string, options: string, handler: string): void;
removeEventListener(type: string, listener: any): void;
resetStatus(): void;
setHistory(history: bool): void;
setStatus(status: string): void;
setStrict(strict: bool): void;
setTitle(title: string): void;
setTracker(tracker: string): void;
setValue(value: string): void;
}
declare var SWFAddress: ISWFAddress;