annotate converter string

This commit is contained in:
Daniel LaCosse 2024-01-25 13:10:45 -05:00
parent 1c05ec5826
commit aaac2994af

View file

@ -22,7 +22,7 @@ export class IfMessages extends LitElement {
@property({
type: Array,
attribute: 'message-ids',
converter: (value) => value.split(/,\s*/),
converter: (value: string) => value.split(/,\s*/),
})
messageIDs: string[] = [];
@property({type: Function, attribute: 'localize'}) localize: (