@tempots/dom

RemoveSignals type

Removes signals from a given object type and returns a new object type with only the non-signal properties.

Signature:

export type RemoveSignalsextends Record<string | number | symbol, Value<unknown>>, K extends (string | number | symbol) & keyof T = keyof T> = {
    [k in K]: GetValueType;
};

References: Value, GetValueType