We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Resolver
1 parent 8c72c8f commit a077f07Copy full SHA for a077f07
docs/dev/using-api.md
@@ -346,6 +346,7 @@ A `Resolver` implements the following interface:
346
```ts
347
import {
348
type ConfigData,
349
+ type MetaDataTable,
350
type Plugin,
351
type ResolverOptions,
352
type Transformer,
@@ -355,7 +356,7 @@ import {
355
356
357
export interface Resolver {
358
name: string;
- resolveElements?(id: string, options: ResolverOptions): unknown | null;
359
+ resolveElements?(id: string, options: ResolverOptions): MetaDataTable | null;
360
resolveConfig?(id: string, options: ResolverOptions): ConfigData | null;
361
resolvePlugin?(id: string, options: ResolverOptions): Plugin | null;
362
resolveTransformer?(id: string, options: ResolverOptions): Transformer | null;
0 commit comments