pull/16131/head
Rich Harris 3 months ago
parent dbf60b76ac
commit 4616259ec9

@ -17,11 +17,11 @@ export interface Value<V = unknown> extends Signal {
/** The latest value for this signal */ /** The latest value for this signal */
v: V; v: V;
/** Dev only */ /** Dev only */
label?: string;
created?: Error | null; created?: Error | null;
updated?: Error | null; updated?: Error | null;
trace_need_increase?: boolean; trace_need_increase?: boolean;
trace_v?: V; trace_v?: V;
label?: string;
trace?: null | (() => void); trace?: null | (() => void);
} }

Loading…
Cancel
Save