mirror of
https://github.com/Eugeny/tabby.git
synced 2025-07-19 01:49:52 +00:00
16 lines
372 B
TypeScript
16 lines
372 B
TypeScript
import { Component } from '@angular/core'
|
|
import { ConfigService, HostAppService, Platform } from 'tabby-core'
|
|
|
|
/** @hidden */
|
|
@Component({
|
|
template: require('./sshSettingsTab.component.pug'),
|
|
})
|
|
export class SSHSettingsTabComponent {
|
|
Platform = Platform
|
|
|
|
constructor (
|
|
public config: ConfigService,
|
|
public hostApp: HostAppService,
|
|
) { }
|
|
}
|