1
0
mirror of https://github.com/Eugeny/tabby.git synced 2025-07-19 01:49:52 +00:00
tabby/tabby-ssh/src/components/sshSettingsTab.component.ts
2021-07-04 12:23:27 +02:00

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,
) { }
}