@isopodlabs/binary_libs 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/pe.d.ts +5 -0
- package/package.json +1 -1
package/dist/pe.d.ts
CHANGED
|
@@ -37,6 +37,11 @@ declare class Section extends Section_base {
|
|
|
37
37
|
interface DirectoryInfo {
|
|
38
38
|
read?: (pe: PE, data: binary.MappedMemory) => any;
|
|
39
39
|
}
|
|
40
|
+
export declare const DIRECTORIES: Record<string, DirectoryInfo>;
|
|
41
|
+
export declare const DATA_DIRECTORY: {
|
|
42
|
+
VirtualAddress: binary.TypeT<number>;
|
|
43
|
+
Size: binary.TypeT<number>;
|
|
44
|
+
};
|
|
40
45
|
type Directory = {
|
|
41
46
|
VirtualAddress: number;
|
|
42
47
|
Size: number;
|
package/package.json
CHANGED