fix: resolved eslint errors

This commit is contained in:
0xJacky 2023-11-29 13:56:40 +08:00
parent 287ef7527d
commit d325dd7493
No known key found for this signature in database
GPG key ID: B6E4A6E4A561BAF0
33 changed files with 643 additions and 584 deletions

View file

@ -1,5 +1,12 @@
import type { ModelBase } from '@/api/curd'
import Curd from '@/api/curd'
const environment = new Curd('/environment')
export interface Environment extends ModelBase {
name: string
url: string
token: string
}
const environment: Curd<Environment> = new Curd('/environment')
export default environment