mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-12 19:05:55 +02:00
fix: resolved eslint errors
This commit is contained in:
parent
287ef7527d
commit
d325dd7493
33 changed files with 643 additions and 584 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue