*/
export function autorunOpts(options: IDebugNameData & {}, fn: (reader: IReaderWithStore) => void, debugLocation = DebugLocation.ofCaller()): IDisposable {
new DebugNameData(options.owner, options.debugName, options.debugReferenceFn ?? fn),
fn,
undefined,
debugLocation
);
}
/**