Skip to content

LoaderDefinition

Defined in: src/loaders/types.ts:5

Loader interface. The goal of a loader is to be able to tell when it can handle a particular source type, and then resolve an ArrayBuffer for that source.

Type Parameters

Type Parameter
T

Properties

PropertyTypeDescription
namestringUnique loader name
matches(source: any) => booleanIs this loader able to process the input source type?
load(source: T) => Promise<ArrayBufferLike>Try loading the source (can be async) and return an ArrayBuffer