UNPKG
docx4js-fork
Version:
latest (3.2.16)
3.2.16
javascript docx parser
github.com/Cherryblue/docx4js
Cherryblue/docx4js
docx4js-fork
/
src
/
openxml
/
xlsx
/
document.js
11 lines
(7 loc)
•
265 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
Base
from
"../document"
import
OfficeDocument
from
"./officeDocument"
export
default
class
extends
Base
{
static
ext=
"xlsx"
static
mime=
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
static
OfficeDocument
=
OfficeDocument
}