export function makeServerHistoryDriver(
  options?: MemoryHistoryOptions
): HistoryDriver {
  const history = createMemoryHistory(options);
  return function serverHistoryDriver(sink$: Stream<HistoryInput | string>) {