export type StatusResult = { status: string fetchStatus: string data: T | undefined } export class StatelessRef { current: T constructor(value: T) { this.current = value } }