@api.global/typedserver
Version:
A TypeScript-based project for easy serving of static files with support for live reloading, compression, and typed requests.
16 lines (15 loc) • 620 B
TypeScript
import * as typedrequestInterfaces from '@api.global/typedrequest-interfaces';
export interface IReq_PushLatestServerChangeTime extends typedrequestInterfaces.implementsTR<typedrequestInterfaces.ITypedRequest, IReq_PushLatestServerChangeTime> {
method: 'pushLatestServerChangeTime';
request: {
time: number;
};
response: {};
}
export interface IReq_GetLatestServerChangeTime extends typedrequestInterfaces.implementsTR<typedrequestInterfaces.ITypedRequest, IReq_GetLatestServerChangeTime> {
method: 'getLatestServerChangeTime';
request: {};
response: {
time: number;
};
}