UNPKG
html2canvas
Version:
latest (1.4.1)
1.4.1
1.4.0
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.0
1.0.0-rc.7
1.0.0-rc.6
1.0.0-rc.5
1.0.0-rc.4
1.0.0-rc.3
1.0.0-rc.2
1.0.0-rc.1
1.0.0-rc.0
1.0.0-alpha.12
1.0.0-alpha.11
1.0.0-alpha.10
1.0.0-alpha.9
1.0.0-alpha.8
1.0.0-alpha.7
1.0.0-alpha.6
1.0.0-alpha.5
1.0.0-alpha.4
1.0.0-alpha.3
1.0.0-alpha.2
1.0.0-alpha.1
0.5.0-beta4
0.5.0-beta3
0.5.0-alpha2
0.5.0-alpha1
0.5.0-alpha
Screenshots with JavaScript
html2canvas.hertzen.com
niklasvh/html2canvas
html2canvas
/
dist
/
types
/
css
/
ITypeDescriptor.d.ts
7 lines
(6 loc)
•
198 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
CSSValue
}
from
'./syntax/parser'
;
import
{
Context
}
from
'../core/context'
;
export
interface
ITypeDescriptor
<T> {
name
:
string
;
parse
:
(
context
:
Context
,
value
:
CSSValue
) =>
T; }