function
resolvePluginFields
Collect field registrations, checking plugin IDs, field-type ownership, named components and API versions. Throws on malformed/duplicate registrations. Used by Ridu's runtime/check tooling; authors normally call the registration helpers and retain their generated plugin list instead of invoking this directly.
Arguments
| Argument | Type | Description |
|---|---|---|
plugins | readonly AdminPlugin[] | The plugins value. |
Returns
The declared result.
readonly ResolvedPluginField[]Full signature
function resolvePluginFields(
plugins: readonly AdminPlugin[],
): readonly ResolvedPluginField[]Related types
AdminPluginA Go plugin’s exported collection of admin field editors, pages, and other components.
ResolvedPluginFieldA registered field editor with the names Ridu uses to select it. Returned by registry resolution.