Add interfaces package

This commit is contained in:
2026-05-05 12:03:46 +00:00
commit 8ceec521eb
21 changed files with 485 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import * as plugins from '../plugins.js';
import * as data from '../data/index.js';
export interface IReq_GetHomeSnapshot
extends plugins.typedRequestInterfaces.implementsTR<
plugins.typedRequestInterfaces.ITypedRequest,
IReq_GetHomeSnapshot
> {
method: 'getHomeSnapshot';
request: {};
response: {
snapshot: data.IHomeSnapshot;
};
}