import { autobind } from "../../utils"; import { KubeApi } from "../../api/kube-api"; import { KubeObjectStore } from "../../kube-object.store"; import { KubeObject } from "../../api/kube-object"; @autobind() export class CRDResourceStore extends KubeObjectStore { api: KubeApi; constructor(api: KubeApi) { super(); this.api = api; } }