mirror of
https://github.com/CyberL1/dlinux-dashboard.git
synced 2025-04-02 14:08:36 -04:00
21 lines
303 B
TypeScript
21 lines
303 B
TypeScript
export interface Container {
|
|
id: string;
|
|
name: string;
|
|
image: string;
|
|
status: string;
|
|
ip: string;
|
|
}
|
|
|
|
export interface CreateContainerBody {
|
|
name: string;
|
|
image: string;
|
|
}
|
|
|
|
export interface RemoveContainerParams {
|
|
id: string;
|
|
}
|
|
|
|
export interface RemoveContainerQuery {
|
|
force: string;
|
|
}
|