fix: TldData interface types
Some checks failed
CI / Frontend Lint & Type Check (push) Has been cancelled
CI / Frontend Build (push) Has been cancelled
CI / Backend Lint (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Docker Build (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
Deploy / Build & Push Images (push) Has been cancelled
Deploy / Deploy to Server (push) Has been cancelled
Deploy / Notify (push) Has been cancelled

This commit is contained in:
2025-12-13 21:35:02 +01:00
parent a5600ee13c
commit e064486582
2 changed files with 6 additions and 6 deletions

View File

@ -33,9 +33,9 @@ interface TldData {
registration_price: number | null
renewal_price: number | null
registrar_count: number
description?: string
introduced?: string
registry?: string
description?: string | null
introduced?: string | null
registry?: string | null
}
interface PriceHistory {

View File

@ -10,9 +10,9 @@ interface TldData {
registration_price: number | null
renewal_price: number | null
registrar_count: number
description?: string
introduced?: string
registry?: string
description?: string | null
introduced?: string | null
registry?: string | null
}
async function getTldData(tld: string): Promise<TldData | null> {