forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypescript.bgiframe.d.ts
33 lines (30 loc) · 899 Bytes
/
typescript.bgiframe.d.ts
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
// Type definitions for bgiframe 1.0
// Project: https://github.com/sumegizoltan/BgiFrame
// Definitions by: Zoltan Sumegi <https://github.com/sumegizoltan>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/*! The plugin based on:
*
* bgiframe for IE6
* https://github.com/brandonaaron/bgiframe
*
* Copyrights for the jQuery plugin:
* Copyright (c) 2013 Brandon Aaron (http://brandonaaron.net)
*/
declare namespace BgiFrame {
interface ISettings {
top: string;
left: string;
width: string;
height: string;
opacity: boolean;
src: string;
conditional: boolean;
}
interface IBgiframe {
s: ISettings;
createIframe(): HTMLElement;
fire(element: HTMLElement): void;
getIframe(element: HTMLElement): HTMLElement;
prop(n: any): string;
}
}