🚑 Fix import statements
This commit is contained in:
parent
a416d86dbe
commit
2a9d191e5b
3 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
import * as zlib from 'zlib';
|
import * as zlib from 'zlib';
|
||||||
import ISsnFileEntry from '../interfaces/ISsnFileEntry';
|
import { ISsnFileEntry } from '../interfaces/ISsnFileEntry';
|
||||||
import decryptFile from './decryption/decryptFile';
|
import decryptFile from './decryption/decryptFile';
|
||||||
|
|
||||||
class ByteReader {
|
class ByteReader {
|
||||||
|
|
|
@ -25,7 +25,7 @@ export default async function getPatch(product: Product, from: number, to: numbe
|
||||||
});
|
});
|
||||||
|
|
||||||
//Extract changed files
|
//Extract changed files
|
||||||
fileEntries.filter((file) => file.diffType === SsnDiffType.Changed).forEach((file) => {
|
fileEntries.filter((file) => file.diffType === SsnDiffType.Changed).forEach(async (file) => {
|
||||||
const fileContents = await extractFile(file, dvArray);
|
const fileContents = await extractFile(file, dvArray);
|
||||||
console.log(fileContents);
|
console.log(fileContents);
|
||||||
//TODO
|
//TODO
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { TextDecoder } from 'util';
|
import { TextDecoder } from 'util';
|
||||||
import ISsnFileEntry from '../interfaces/ISsnFileEntry';
|
import { ISsnFileEntry } from '../interfaces/ISsnFileEntry';
|
||||||
import getDecryptionKeys from './decryption/getDecryptionKeys';
|
import getDecryptionKeys from './decryption/getDecryptionKeys';
|
||||||
import modifyPassword from './decryption/modifyPassword';
|
import modifyPassword from './decryption/modifyPassword';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue