@@ -41,9 +41,9 @@ export type AuditDiff = Record<string, AuditDiffField>
41
41
42
42
// From codersdk/audit.go
43
43
export interface AuditDiffField {
44
- // eslint-disable-next-line
44
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO explain why this is needed
45
45
readonly old ?: any
46
- // eslint-disable-next-line
46
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO explain why this is needed
47
47
readonly new ?: any
48
48
readonly secret : boolean
49
49
}
@@ -55,7 +55,7 @@ export interface AuditLog {
55
55
readonly time : string
56
56
readonly organization_id : string
57
57
// Named type "net/netip.Addr" unknown, using "any"
58
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
58
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO explain why this is needed
59
59
readonly ip : any
60
60
readonly user_agent : string
61
61
readonly resource_type : ResourceType
@@ -384,7 +384,7 @@ export interface Healthcheck {
384
384
export interface License {
385
385
readonly id : number
386
386
readonly uploaded_at : string
387
- // eslint-disable-next-line
387
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO explain why this is needed
388
388
readonly claims : Record < string , any >
389
389
}
390
390
@@ -577,7 +577,7 @@ export interface Role {
577
577
// From codersdk/sse.go
578
578
export interface ServerSentEvent {
579
579
readonly type : ServerSentEventType
580
- // eslint-disable-next-line
580
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO explain why this is needed
581
581
readonly data : any
582
582
}
583
583
0 commit comments