@tempots/dom

AtGetter type

Represents a type that maps each property of T to a Signal of its corresponding type.

Signature:

export type AtGetter<T> = {
    [K in keyof T]-?: Signal<T[K]>;
};

References: Signal