UNPKG
clipboard-polyfill
Version:
latest (4.1.1)
4.1.1
4.1.0
4.0.2
4.0.1
4.0.0
4.0.0-rc8
4.0.0-rc7
4.0.0-rc6
4.0.0-rc5
4.0.0-rc3
4.0.0-rc2
4.0.0-rc1
3.0.3
3.0.2
3.0.1
3.0.0
3.0.0-pre5
3.0.0-pre4
3.0.0-pre3
3.0.0-pre2
3.0.0-pre1
2.8.6
2.8.5
2.8.4
2.8.3
2.8.1
2.8.0
2.7.0
2.5.4
2.5.3
2.5.2
2.5.1
2.5.0
2.4.7
2.4.6
2.4.5
2.4.4
2.4.3
2.4.2
2.4.1
2.4.0
2.3.1
2.3.0
2.1.4
2.1.0
2.0.3
2.0.2
2.0.1
2.0.0
0.4.1
0.4.0
A polyfill for the asynchronous clipboard API
github.com/lgarron/clipboard.js
lgarron/clipboard.js
clipboard-polyfill
/
DataTypes.ts
10 lines
(8 loc)
•
208 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
export
const
DataTypes
: {[
key
:
string
]:
string
} = {
TEXT_PLAIN
:
"text/plain"
,
TEXT_HTML
:
"text/html"
};
export
const
DataTypeLookup
: {[
key
:
string
]:
boolean
} = {
"text/plain"
:
true
,
"text/html"
:
true
};