enforce values as string[] instead of any
Signed-off-by: Kashish Mittal <kmittal@redhat.com>
This commit is contained in:
@@ -136,7 +136,6 @@ import {
|
||||
} from '@backstage/plugin-scaffolder-node';
|
||||
|
||||
/**
|
||||
|
||||
* RouterOptions
|
||||
*/
|
||||
export interface RouterOptions {
|
||||
|
||||
@@ -469,7 +469,7 @@ export type TaskEventType = 'completion' | 'log' | 'cancelled' | 'recovered';
|
||||
// @public
|
||||
export type TaskFilter = {
|
||||
key: string;
|
||||
values?: Array<string> | undefined;
|
||||
values?: string[];
|
||||
};
|
||||
|
||||
// @public
|
||||
|
||||
@@ -111,7 +111,7 @@ export type TaskBrokerDispatchOptions = {
|
||||
*/
|
||||
export type TaskFilter = {
|
||||
key: string;
|
||||
values?: Array<string> | undefined;
|
||||
values?: string[];
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user