updated rxjs imports

This commit is contained in:
Eugene Pankov
2021-07-06 09:43:16 +02:00
parent d1b874c191
commit 636942ff86
12 changed files with 12 additions and 20 deletions

View File

@@ -1,6 +1,6 @@
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { Component } from '@angular/core'
import { debounceTime, distinctUntilChanged, map } from 'rxjs/operators'
import { debounceTime, distinctUntilChanged, map } from 'rxjs'
import { ProfileSettingsComponent } from 'tabby-core'
import { SerialPortInfo, BAUD_RATES, SerialProfile } from '../api'
import { SerialService } from '../services/serial.service'

View File

@@ -1,7 +1,7 @@
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import colors from 'ansi-colors'
import { Component, Injector } from '@angular/core'
import { first } from 'rxjs/operators'
import { first } from 'rxjs'
import { SelectorService } from 'tabby-core'
import { BaseTerminalTabComponent } from 'tabby-terminal'
import { SerialSession, BAUD_RATES, SerialProfile } from '../api'