/
githubmirror
/
tabby
Обзор
Документация
Войти
/
githubmirror
/
tabby
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tabby-terminal/src/components/colorPicker.component.ts
14 строк
403 B
Eugene Pankov
lint
10 апр 2023, 22:21
Не верифицирован
10 апр 2023, 22:21
3b8ca0d
Код
Авторство
О чём код?
import { Component, Input, Output, EventEmitter } from '@angular/core' /** @hidden */ @Component({ selector: 'color-picker', templateUrl: './colorPicker.component.pug', styleUrls: ['./colorPicker.component.scss'], }) export class ColorPickerComponent { @Input() model: string @Input() title: string @Input() hint: string @Output() modelChange = new EventEmitter<string>() }