02c01341f4
- create select-tags component to replace ngx-chips - create select-options to factorize option selection in forms - create select-channel to simplify channel selection - refactor tags validation
5 lines
85 B
TypeScript
5 lines
85 B
TypeScript
export interface VideoConstant<T> {
|
|
id: T
|
|
label: string
|
|
description?: string
|
|
}
|