BundleDescriptor

Bundle metadata including header and index information.

Bundle metadata including header and index information.

A descriptor contains only the metadata without loading the actual file data, making it efficient for inspecting bundle contents.

View source ↗

Constructor

new BundleDescriptor();

Methods

Prop

Type

Examples

const bundle = await readBundle('app.wvb');
const descriptor = bundle.descriptor();
const header = descriptor.header();
const index = descriptor.index();

On this page