Files
tabby/tabby-telnet/src/components/telnetProfileSettings.component.ts
2021-07-13 23:44:23 +02:00

14 lines
433 B
TypeScript

/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { Component } from '@angular/core'
import { ProfileSettingsComponent } from 'tabby-core'
import { TelnetProfile } from '../session'
/** @hidden */
@Component({
template: require('./telnetProfileSettings.component.pug'),
})
export class TelnetProfileSettingsComponent implements ProfileSettingsComponent<TelnetProfile> {
profile: TelnetProfile
}