mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-30 00:08:04 +00:00
Enabled recommended-requiring-type-checking as result type fixes provided (#632)
* Enabled recommended-requiring-type-checking * from .cjs to .js * check * check * check * check * A lot of types aligned and refactored * More strict types * Improvement * Improvements * Improvements * Fixed routs * Fixed import types
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
import type { DeploymentStatus } from "../components/common/StatusLabel";
|
||||
|
||||
export type Chart = {
|
||||
id: string;
|
||||
name: string;
|
||||
@@ -35,7 +37,7 @@ export type Release = {
|
||||
namespace: string;
|
||||
revision: number;
|
||||
updated: string;
|
||||
status: string;
|
||||
status: DeploymentStatus;
|
||||
chart: string;
|
||||
chart_name: string;
|
||||
chart_ver: string;
|
||||
@@ -79,7 +81,7 @@ export type Repository = {
|
||||
export type ReleaseRevision = {
|
||||
revision: number;
|
||||
updated: string;
|
||||
status: string;
|
||||
status: DeploymentStatus;
|
||||
chart: string;
|
||||
app_version: string;
|
||||
description: string;
|
||||
|
||||
Reference in New Issue
Block a user