1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/+config-autoscalers/hpa.store.ts
Alex Andreev 2cd5e129f1 Revert "Use @typescript-eslint/semi."
This reverts commit 890fa5dd9e.
2020-11-20 07:51:42 +03:00

13 lines
410 B
TypeScript

import { autobind } from "../../utils";
import { KubeObjectStore } from "../../kube-object.store";
import { HorizontalPodAutoscaler, hpaApi } from "../../api/endpoints/hpa.api";
import { apiManager } from "../../api/api-manager";
@autobind()
export class HPAStore extends KubeObjectStore<HorizontalPodAutoscaler> {
api = hpaApi
}
export const hpaStore = new HPAStore();
apiManager.registerStore(hpaStore);