smartlog-interfaces/ts/smartlog-interfaces.requests.ts
2024-06-06 16:48:54 +02:00

10 lines
247 B
TypeScript

import { type ILogPackageAuthenticated } from './index.js';
export interface IRequest_SmartlogDestinationReceiver_Any_PostLogPackages {
method: 'postLogPackages';
request: {
logPackages: ILogPackageAuthenticated[];
};
response: {};
}