Skip to content

Commit

Permalink
chore: fix and wip
Browse files Browse the repository at this point in the history
  • Loading branch information
devthejo authored and Julien Bouquillon committed Jan 13, 2023
1 parent 95bca99 commit e1982f6
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
type ResourceRequirements = import("kubernetes-models/v1").ResourceRequirements;
type Namespace = import("kubernetes-models/v1").Namespace;
type Deployment = import("kubernetes-models/apps/v1").Deployment;
type StatefulSet = import("kubernetes-models/apps/v1").StatefulSet;
type DaemonSet = import("kubernetes-models/apps/v1").DaemonSet;
type Ingress = import("kubernetes-models/networking.k8s.io/v1").Ingress;
type Service = import("kubernetes-models/v1").Service;
type Job = import("kubernetes-models/batch/v1").Job;
type CronJob = import("kubernetes-models/batch/v1").CronJob;
type ResourceRequirements = import("kubernetes-models/v1").IResourceRequirements;
type Namespace = import("kubernetes-models/v1").INamespace;
type Deployment = import("kubernetes-models/apps/v1").IDeployment;
type StatefulSet = import("kubernetes-models/apps/v1").IStatefulSet;
type DaemonSet = import("kubernetes-models/apps/v1").IDaemonSet;
type Ingress = import("kubernetes-models/networking.k8s.io/v1").IIngress;
type Service = import("kubernetes-models/v1").IService;
type Job = import("kubernetes-models/batch/v1").IJob;
type CronJob = import("kubernetes-models/batch/v1").ICronJob;
type ConfigMap = import("kubernetes-models/v1").IConfigMap;
type Secret = import("kubernetes-models/v1").ISecret;

type Utils = import("./packages/common/utils").default;

Expand All @@ -30,7 +32,9 @@ declare namespace Kontinuous {
| Service
| Job
| CronJob
| KappConfig;
| KappConfig
| ConfigMap
| Secret;

type Manifests = Manifest[];

Expand Down

0 comments on commit e1982f6

Please sign in to comment.