Skip to content

Commit

Permalink
[Angular] Upgrade typescript-eslint from 8.11.0 to 8.12.1 (#27721)
Browse files Browse the repository at this point in the history
  • Loading branch information
qmonmert authored Oct 29, 2024
1 parent 359bbc3 commit c31bd29
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion generators/angular/resources/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"rimraf": "5.0.8",
"ts-jest": "29.2.5",
"typescript": "5.5.4",
"typescript-eslint": "8.11.0",
"typescript-eslint": "8.12.1",
"webpack": "5.95.0",
"webpack-bundle-analyzer": "4.10.2",
"webpack-merge": "6.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,7 @@ export type HealthKey =

export interface Health {
status: HealthStatus;
components: {
[key in HealthKey]?: HealthDetails;
};
components?: Partial<Record<HealthKey, HealthDetails>>;
}

export interface HealthDetails {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,7 @@ export interface GarbageCollector {
classesUnloaded: number;
}

export type Services = Record<
string,
{
[key in HttpMethod]?: MaxMeanCount;
}
>;
export type Services = Record<string, Record<HttpMethod, MaxMeanCount>>;

export enum HttpMethod {
Post = 'POST',
Expand Down

0 comments on commit c31bd29

Please sign in to comment.