/
githubmirror
/
tabby
Обзор
Документация
Войти
/
githubmirror
/
tabby
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tabby-telnet/src/components/telnetProfileSettings.component.ts
14 строк
530 B
Eugene
clarify partial/full profile types
24 янв 2026, 19:30
Не верифицирован
24 янв 2026, 19:30
438ac9a
Код
Авторство
О чём код?
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { Component } from '@angular/core' import { FullyDefined, ProfileSettingsComponent } from 'tabby-core' import { TelnetProfile } from '../session' import { TelnetProfilesService } from '../profiles' /** @hidden */ @Component({ templateUrl: './telnetProfileSettings.component.pug', }) export class TelnetProfileSettingsComponent implements ProfileSettingsComponent<TelnetProfile, TelnetProfilesService> { profile: FullyDefined<TelnetProfile> }