smartlog-interfaces/ts/smartlog-interfaces.requests.ts

10 lines
242 B
TypeScript

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