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

10 lines
247 B
TypeScript
Raw Permalink Normal View History

2024-06-06 14:48:54 +00:00
import { type ILogPackageAuthenticated } from './index.js';
2019-10-22 14:14:22 +00:00
export interface IRequest_SmartlogDestinationReceiver_Any_PostLogPackages {
method: 'postLogPackages';
request: {
logPackages: ILogPackageAuthenticated[];
};
2022-03-07 19:26:59 +00:00
response: {};
2020-06-04 15:12:36 +00:00
}