1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Tiny typing fix

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2023-02-10 14:27:52 +03:00
parent 2c39868b39
commit e75591b2a7

View File

@ -21,7 +21,7 @@ export interface NamespaceTree {
interface Dependencies extends KubeObjectStoreDependencies {
readonly storage: StorageLayer<string[] | undefined>;
readonly clusterConfiguredAccessibleNamespaces: IComputedValue<string[]>;
readonly removeSubnamespace: (name: string) => void;
readonly removeSubnamespace: (name: string) => Promise<void>;
}
export class NamespaceStore extends KubeObjectStore<Namespace, NamespaceApi> {