enforce values as string[] instead of any

Signed-off-by: Kashish Mittal <kmittal@redhat.com>
This commit is contained in:
Kashish Mittal
2025-05-09 15:22:19 -04:00
parent d2b8e6e461
commit e161cf1043
3 changed files with 2 additions and 3 deletions
@@ -136,7 +136,6 @@ import {
} from '@backstage/plugin-scaffolder-node';
/**
* RouterOptions
*/
export interface RouterOptions {
+1 -1
View File
@@ -469,7 +469,7 @@ export type TaskEventType = 'completion' | 'log' | 'cancelled' | 'recovered';
// @public
export type TaskFilter = {
key: string;
values?: Array<string> | undefined;
values?: string[];
};
// @public
+1 -1
View File
@@ -111,7 +111,7 @@ export type TaskBrokerDispatchOptions = {
*/
export type TaskFilter = {
key: string;
values?: Array<string> | undefined;
values?: string[];
};
/**