svell_jerry 3 år sedan
förälder
incheckning
f426d77fce
2 ändrade filer med 9 tillägg och 1 borttagningar
  1. 5 1
      packages/xlsx/src/doc/WorkBook.ts
  2. 4 0
      packages/xlsx/src/internal.ts

+ 5 - 1
packages/xlsx/src/doc/WorkBook.ts

@@ -1,3 +1,7 @@
+import {
+    Properties
+} from "../internal";
+
 export class WorkBook {
     public category: string;
     public company: string;
@@ -6,5 +10,5 @@ export class WorkBook {
     public keywords: string;
     public manager: string;
     public modified: Date = this.created;
-    public properties: null;
+    public properties: Properties;
 }

+ 4 - 0
packages/xlsx/src/internal.ts

@@ -0,0 +1,4 @@
+export  * from './doc/Properties'
+export * from './doc/WorkBook'
+
+export * from './xlsx/BaseXForm'