Merge pull request #490 from dolanmiu/feat/fix-exports

Add type and node type definition exports
This commit is contained in:
Dolan
2020-01-11 19:25:41 +00:00
committed by GitHub
3 changed files with 5 additions and 3 deletions

6
package-lock.json generated
View File

@ -319,9 +319,9 @@
"dev": true "dev": true
}, },
"@types/node": { "@types/node": {
"version": "12.0.12", "version": "13.1.6",
"resolved": "https://registry.npmjs.org/@types/node/-/node-12.0.12.tgz", "resolved": "https://registry.npmjs.org/@types/node/-/node-13.1.6.tgz",
"integrity": "sha512-Uy0PN4R5vgBUXFoJrKryf5aTk3kJ8Rv3PdlHjl6UaX+Cqp1QE0yPQ68MPXGrZOfG7gZVNDIJZYyot0B9ubXUrQ==" "integrity": "sha512-Jg1F+bmxcpENHP23sVKkNuU3uaxPnsBMW0cLjleiikFKomJQbsn0Cqk2yDvQArqzZN6ABfBkZ0To7pQ8sLdWDg=="
}, },
"@types/request": { "@types/request": {
"version": "2.48.1", "version": "2.48.1",

View File

@ -50,6 +50,7 @@
"types": "./build/index.d.ts", "types": "./build/index.d.ts",
"dependencies": { "dependencies": {
"@types/jszip": "^3.1.4", "@types/jszip": "^3.1.4",
"@types/node": "^13.1.6",
"jszip": "^3.1.5", "jszip": "^3.1.5",
"shortid": "^2.2.15", "shortid": "^2.2.15",
"xml": "^1.0.1", "xml": "^1.0.1",

View File

@ -1,3 +1,4 @@
export * from "./styles"; export * from "./styles";
export * from "./style/character-style"; export * from "./style/character-style";
export * from "./style/paragraph-style"; export * from "./style/paragraph-style";
export * from "./style-options";