13 lines
265 B
TypeScript
13 lines
265 B
TypeScript
|
import * as userInterfaces from '../data/user.js';
|
||
|
|
||
|
/**
|
||
|
* a status update dashboard
|
||
|
*/
|
||
|
export interface IRequest_Coreflow_Cloudly_CoreflowManagerStatusupdate {
|
||
|
method: 'cloudlyStatus';
|
||
|
request: {
|
||
|
identity: userInterfaces.IIdentity;
|
||
|
};
|
||
|
response: {};
|
||
|
}
|