mirror of
https://github.com/Eugeny/tabby.git
synced 2025-10-04 22:14:55 +00:00
14 lines
433 B
TypeScript
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
|
|
}
|