UNPKG
@stackblitz/sdk
Version:
latest (1.11.0)
1.11.0
1.10.0
1.9.0
1.9.0-alpha.2
1.9.0-alpha.1
1.9.0-alpha.0
1.8.2
1.8.1
1.8.0
1.7.0
1.7.0-alpha.3
1.7.0-alpha.2
1.7.0-alpha.1
1.7.0-alpha.0
1.6.0
1.5.6
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
1.4.0
1.3.0
1.2.0
1.1.1
1.1.0
1.0.0
0.5.0
0.4.0
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.1-alpha.0
0.2.0
0.1.2
0.1.2-alpha.2
0.1.2-alpha.1
0.1.2-alpha.0
0.1.1
0.1.0
SDK for generating and embedding StackBlitz projects.
github.com/stackblitz/sdk
stackblitz/sdk
@stackblitz/sdk
/
types
/
connection.d.ts
10 lines
(9 loc)
•
294 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
VM
}
from
'./vm'
;
export
declare
class
Connection
{
element
:
HTMLIFrameElement
;
id
:
string
;
pending
:
Promise
<
VM
>;
vm
?:
VM
;
constructor
(
element
:
HTMLIFrameElement
); }
export
declare
const
getConnection
:
(
identifier
:
string
|
HTMLIFrameElement
) =>
Connection
|
null
;