fix: resolved all vue-tsc errors

This commit is contained in:
0xJacky 2023-11-29 22:04:30 +08:00
parent d325dd7493
commit ab1adcfa3d
No known key found for this signature in database
GPG key ID: B6E4A6E4A561BAF0
64 changed files with 675 additions and 451 deletions

View file

@ -5,8 +5,15 @@ export interface Environment extends ModelBase {
name: string
url: string
token: string
status?: boolean
}
export interface Node {
id: number
name: string
token: string
response_at?: Date
}
const environment: Curd<Environment> = new Curd('/environment')
export default environment