mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-28 03:30:05 +00:00
13 lines
182 B
TypeScript
13 lines
182 B
TypeScript
export interface Sort {
|
|
field: string;
|
|
direction: "ASC" | "DESC";
|
|
}
|
|
|
|
export interface Setting {
|
|
id: number;
|
|
createdOn: number;
|
|
modifiedOn: number;
|
|
name: string;
|
|
value: any;
|
|
}
|