Coda by Ian Macalinao
    Preparing search index...

    Type Alias ExternalRegistryRecordArgs

    type ExternalRegistryRecordArgs = {
        authority: AuthorityArgs;
        dataLen: OptionOrNullable<number | bigint>;
        dataOffset: OptionOrNullable<number | bigint>;
        lifecycleChecks: OptionOrNullable<
            (readonly [HookableLifecycleEventArgs, ExternalCheckResultArgs])[],
        >;
        offset: number | bigint;
        pluginType: ExternalPluginAdapterTypeArgs;
    }
    Index

    Properties

    authority: AuthorityArgs

    The authority currently allowed to manage the adapter.

    dataLen: OptionOrNullable<number | bigint>

    The length, in bytes, of this adapter's separate data payload, if it stores one.

    dataOffset: OptionOrNullable<number | bigint>

    The byte offset at which this adapter's separate data payload begins, if it stores one.

    lifecycleChecks: OptionOrNullable<
        (readonly [HookableLifecycleEventArgs, ExternalCheckResultArgs])[],
    >

    The lifecycle events this adapter is consulted for, and how its result should be interpreted.

    offset: number | bigint

    The byte offset, within the plugin registry, at which this adapter's config begins.

    The type of the external plugin adapter this record describes.