17 lines
282 B
TypeScript
17 lines
282 B
TypeScript
import type { Resource } from "./resources"
|
|
import type { User } from "./user"
|
|
|
|
export type Batch = {
|
|
id: number
|
|
batch_no: string
|
|
prov: string
|
|
city: string
|
|
ip: string
|
|
isp: string
|
|
count: string
|
|
resource_id: string
|
|
time: string
|
|
user?: User
|
|
resource?: Resource
|
|
}
|