mirror of
https://github.com/clearml/clearml-web
synced 2025-06-26 18:27:02 +00:00
16 lines
233 B
TypeScript
16 lines
233 B
TypeScript
export interface SmHttpResponse {
|
|
data: any;
|
|
meta: any;
|
|
}
|
|
|
|
export interface IApiRequest {
|
|
payload?: any;
|
|
meta: IApiRequestMeta;
|
|
params?: object;
|
|
}
|
|
|
|
export interface IApiRequestMeta {
|
|
method: string;
|
|
endpoint: string;
|
|
}
|