SYMBOL INDEX (35 symbols across 7 files) FILE: src/adapters/jimp.ts type ResizeProps (line 3) | type ResizeProps = { class JimpAdapter (line 14) | class JimpAdapter { method constructor (line 16) | constructor(imagePath: string) { method metadata (line 19) | metadata(): Promise<{ height: number; width: number }> { method resize (line 25) | resize({ FILE: src/adapters/sharp.ts type ResizeProps (line 3) | type ResizeProps = { class SharpAdapter (line 14) | class SharpAdapter { method constructor (line 16) | constructor(imagePath: string) { method metadata (line 19) | metadata(): Promise { method resize (line 22) | resize({ width, mime, options }: ResizeProps): Promise<{ data: Buffer;... FILE: src/cache.ts function cache (line 138) | async function cache(cacheOptions: CacheOptions, transformParams: Transf... FILE: src/index.ts constant DEFAULTS (line 22) | const DEFAULTS = { function loader (line 46) | function loader(this: LoaderContext, content: string): void { type OrchestrateParams (line 130) | interface OrchestrateParams { function orchestrate (line 134) | async function orchestrate(params: OrchestrateParams) { function transform (line 149) | async function transform({ type TransformationParams (line 189) | interface TransformationParams { function transformations (line 203) | async function transformations({ FILE: src/parseQuery.ts type LooseObject (line 3) | interface LooseObject { function parseQuery (line 13) | function parseQuery(query: string): LooseObject { FILE: src/types.d.ts type Options (line 1) | type Options = { type Format (line 26) | type Format = 'png' | 'jpg' | 'jpeg' | 'webp' | 'avif' type FileExt (line 27) | type FileExt = 'jpg' | 'png' | 'webp' | 'avif' type MimeType (line 28) | type MimeType = 'image/jpeg' | 'image/png' | 'image/webp' | 'image/avif' type CacheOptions (line 30) | interface CacheOptions { type Adapter (line 36) | type Adapter = (imagePath: string) => AdapterImplementation type ImageOptions (line 37) | interface ImageOptions { type AdapterImplementation (line 43) | interface AdapterImplementation { type AdapterResizeResponse (line 47) | type AdapterResizeResponse = { data: string | Buffer; width: number; hei... type TransformParams (line 49) | interface TransformParams { FILE: src/utils.ts type MIMES (line 6) | enum MIMES { type EXTS (line 14) | enum EXTS { type ParsedOptions (line 21) | type ParsedOptions = { function parseOptions (line 32) | function parseOptions(resourcePath: string, options: Options): ParsedOpt... type GetOutputAndPublicPath (line 112) | interface GetOutputAndPublicPath {