fix: resolve lint error in ownership-costs types (refs #29)
All checks were successful
Deploy to Staging / Build Images (pull_request) Successful in 4m37s
Deploy to Staging / Deploy to Staging (pull_request) Successful in 37s
Deploy to Staging / Verify Staging (pull_request) Successful in 7s
Deploy to Staging / Notify Staging Ready (pull_request) Successful in 6s
Deploy to Staging / Notify Staging Failure (pull_request) Has been skipped

Milestone 6: Change empty interface to type alias to fix
@typescript-eslint/no-empty-object-type error

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Eric Gullickson
2026-01-13 21:37:30 -06:00
parent f0deab8210
commit 1d95eba395

View File

@@ -50,8 +50,8 @@ export const UpdateOwnershipCostSchema = z.object({
}); });
export type UpdateOwnershipCostRequest = z.infer<typeof UpdateOwnershipCostSchema>; export type UpdateOwnershipCostRequest = z.infer<typeof UpdateOwnershipCostSchema>;
// Response types // Response type (alias to OwnershipCost)
export interface OwnershipCostResponse extends OwnershipCost {} export type OwnershipCostResponse = OwnershipCost;
// TCO aggregation stats // TCO aggregation stats
// NOTE: Extended for backward compatibility with vehicles service // NOTE: Extended for backward compatibility with vehicles service