mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-28 19:40:28 +00:00
Adds dynamic table with initial settings page
This commit is contained in:
12
frontend/src/api/npm/models.ts
Normal file
12
frontend/src/api/npm/models.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
export interface Sort {
|
||||
field: string;
|
||||
direction: "ASC" | "DESC";
|
||||
}
|
||||
|
||||
export interface Setting {
|
||||
id: number;
|
||||
createdOn: number;
|
||||
modifiedOn: number;
|
||||
name: string;
|
||||
value: any;
|
||||
}
|
Reference in New Issue
Block a user