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

Type Parameters