Type Parameters
T
T
Properties
autoRefresh?
debounceMs?
onChanged
Parameters
error
Error | null
items
T[] | null
Returns
void | Promise<void>Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
type ListChangedHandler<T> = {
autoRefresh?: boolean;
debounceMs?: number;
onChanged: (error, items) => void | Promise<void>;
};
T
optional autoRefresh?: boolean;
optional debounceMs?: number;
onChanged: (error, items) => void | Promise<void>;
Error | null
T[] | null
void | Promise<void>