securityos/node_modules/pe-library/dist/format/FormatBase.d.ts

7 lines
215 B
TypeScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
export default abstract class FormatBase {
protected readonly view: DataView;
protected constructor(view: DataView);
copyTo(bin: ArrayBuffer, offset: number): void;
get byteLength(): number;
}