Sanity Library Reference Docs
    Preparing search index...

    Effect handler descriptor, registered by the runtime against an effect name (1:1 — the stored definition never references code). The description and param shape live in the registry, which the SDK snapshots into pendingEffects[] at queue time.

    interface EffectDescriptor {
        description?: string;
        name: string;
        params?: EffectDescriptorParam[];
    }
    Index

    Properties

    description?: string
    name: string