LazyFileOptions

View Source

Summary

Options for creating a LazyFile.

Signature

interface LazyFileOptions {
  lastModified?: number;
  range?: ByteRange;
  type?: string;
}

Properties

lastModified

The last modified timestamp of the file in milliseconds.

MDN Reference

range

The range of bytes to include from the content. If not specified, all content is included.

type

The MIME type of the content.

MDN Reference