interfaces/ts/requests/requests.snapshot.ts

19 lines
529 B
TypeScript
Raw Normal View History

2023-04-03 15:12:01 +00:00
import { IDomainSnapshot } from '../data/domainsnapshot.js';
2023-04-17 12:54:26 +00:00
import { ILinkSnapshot } from '../data/linksnapshot.js';
2023-04-03 15:12:01 +00:00
import * as plugins from '../ul-interfaces.plugins.js';
export interface IReq_PerformDomainSnapshot
extends plugins.typedRequestInterfaces.implementsTR<
plugins.typedRequestInterfaces.ITypedRequest,
IReq_PerformDomainSnapshot
> {
method: 'performDomainSnapshot';
request: {
domainName: string;
};
response: {
domainSnapshot: IDomainSnapshot;
2023-04-17 12:54:26 +00:00
linkSnapshot: ILinkSnapshot;
2023-04-17 11:48:32 +00:00
};
2023-04-03 15:12:01 +00:00
}