Changed the items argument of DropDown to be readonly as it doesn't need to be mutable.

This commit is contained in:
jtuu 2019-11-07 11:38:10 +02:00
parent 9545f056ab
commit 8247934e78

View File

@ -22,7 +22,7 @@ export class DropDown<T> extends Control {
constructor( constructor(
text: string, text: string,
items: T[] | Property<T[]>, items: readonly T[] | Property<readonly T[]>,
to_label: (element: T) => string, to_label: (element: T) => string,
options?: DropDownOptions, options?: DropDownOptions,
) { ) {