mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Chore: Remove several instances of non-strict null usage (#20563)
This commit is contained in:
@@ -18,8 +18,8 @@ export interface LocationUpdate {
|
||||
replace?: boolean;
|
||||
}
|
||||
|
||||
export type UrlQueryValue = string | number | boolean | string[] | number[] | boolean[];
|
||||
export type UrlQueryMap = { [s: string]: UrlQueryValue };
|
||||
export type UrlQueryValue = string | number | boolean | string[] | number[] | boolean[] | undefined;
|
||||
export type UrlQueryMap = Record<string, UrlQueryValue>;
|
||||
|
||||
export interface LocationSrv {
|
||||
update(options: LocationUpdate): void;
|
||||
|
||||
Reference in New Issue
Block a user