@yesstudio/nuxt-composables
    Preparing search index...

    Type Alias SetupContext<E, S>

    SetupContext: E extends any
        ? {
            attrs: Data;
            emit: EmitFn<E>;
            expose: <Exposed extends Record<string, any> = Record<string, any>>(
                exposed?: Exposed,
            ) => void;
            slots: UnwrapSlotsType<S>;
        }
        : never

    Type Parameters