UNPKG
@print-one/grapesjs
Version:
latest (0.21.25)
0.21.25
0.21.24
0.21.22
0.21.21
0.21.20
0.21.18
0.21.17
0.21.15
0.21.14
0.21.13
0.21.12
0.21.10
0.21.9
Free and Open Source Web Builder Framework
grapesjs.com
Print-one/grapesjs
@print-one/grapesjs
/
src
/
asset_manager
/
model
/
AssetImage.ts
14 lines
(12 loc)
•
224 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
Asset
from
'./Asset'
;
export
default
class
AssetImage
extends
Asset
{
defaults
(
) {
return
{ ...
Asset
.
getDefaults
(),
type
:
'image'
,
unitDim
:
'px'
,
height
:
0
,
width
:
0
, }; } }