12 lines
343 B
TypeScript
12 lines
343 B
TypeScript
import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces';
|
|
|
|
export interface IReq_PushLatestServerChangeTime extends typedrequestInterfaces.implementsTR<
|
|
typedrequestInterfaces.ITypedRequest,
|
|
IReq_PushLatestServerChangeTime
|
|
> {
|
|
method: 'pushLatestServerChangeTime',
|
|
request: {
|
|
time: number;
|
|
};
|
|
response: {}
|
|
} |