Files

15 lines
358 B
TypeScript
Raw Permalink Normal View History

2026-05-05 12:03:46 +00:00
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;
};
}