fix(core): update

This commit is contained in:
2023-04-17 14:54:26 +02:00
parent 5afbf16906
commit 9d8985d67a
3 changed files with 17 additions and 1 deletions

View File

@ -1,4 +1,5 @@
import { IDomainSnapshot } from '../data/domainsnapshot.js';
import { ILinkSnapshot } from '../data/linksnapshot.js';
import * as plugins from '../ul-interfaces.plugins.js';
export interface IReq_PerformDomainSnapshot
@ -12,5 +13,6 @@ export interface IReq_PerformDomainSnapshot
};
response: {
domainSnapshot: IDomainSnapshot;
linkSnapshot: ILinkSnapshot;
};
}