fix(core): update

This commit is contained in:
2023-04-03 13:40:56 +02:00
parent a1bf280a2f
commit 8e9c6be7e0
13 changed files with 133 additions and 68 deletions

View File

@ -1,4 +1,4 @@
import { ICheck } from '../data/checks.js';
import { ICheckCollection } from '../data/checkcollection.js';
import * as plugins from '../ul-interfaces.plugins.js';
export interface IRequest_CheckExchange
@ -8,9 +8,9 @@ export interface IRequest_CheckExchange
> {
method: 'check';
request: {
check: ICheck;
checkCollection: ICheckCollection;
};
response: {
check: ICheck;
checkCollection: ICheckCollection;
}
}