Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
kjk committed Sep 9, 2023
1 parent 4efe0c6 commit 171674d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web/libarchive/libarchive.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { CompressedFile } from "./compressed-file.js";

export class Archive {

static _options = {};

/**
* Initialize libarchivejs
* @param {Object} options
Expand All @@ -19,7 +21,7 @@ export class Archive {
* Creates new archive instance from browser native File object
* @param {File} file
* @param {object} options
* @returns {Archive}
* @returns {Promise<Archive>}
*/
static open(file, options = null) {
options = options ||
Expand Down

0 comments on commit 171674d

Please sign in to comment.