fix(core): update

This commit is contained in:
2023-03-29 14:54:07 +02:00
commit 98be43fbb5
23 changed files with 5199 additions and 0 deletions

12
ts/interfaces/index.ts Normal file
View File

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