UNPKG
take-shot
Version:
latest (0.0.13)
0.0.13
0.0.12
0.0.9
0.0.8
0.0.7
0.0.6
Screenshots with JavaScript
github.com/sedmedgh/take-shot
sedmedgh/take-shot
take-shot
/
dist
/
css
/
property-descriptors
/
word-break.d.ts
8 lines
(7 loc)
•
260 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
IPropertyIdentValueDescriptor
}
from
'../IPropertyDescriptor'
;
export
declare
enum
WORD_BREAK
{
NORMAL
=
"normal"
,
BREAK_ALL
=
"break-all"
,
KEEP_ALL
=
"keep-all"
}
export
declare
const
wordBreak
:
IPropertyIdentValueDescriptor
<
WORD_BREAK
>;