Change type of revision to a number

This commit is contained in:
Rowan Cockett
2021-10-08 15:52:12 -06:00
parent abbd620220
commit 47099d0468
4 changed files with 5 additions and 5 deletions

View File

@ -57,7 +57,7 @@ export class File {
this.coreProperties = new CoreProperties({
...options,
creator: options.creator ?? "Un-named",
revision: options.revision ?? "1",
revision: options.revision ?? 1,
lastModifiedBy: options.lastModifiedBy ?? "Un-named",
});