10 lines
247 B
TypeScript
10 lines
247 B
TypeScript
import { type ILogPackageAuthenticated } from './index.js';
|
|
|
|
export interface IRequest_SmartlogDestinationReceiver_Any_PostLogPackages {
|
|
method: 'postLogPackages';
|
|
request: {
|
|
logPackages: ILogPackageAuthenticated[];
|
|
};
|
|
response: {};
|
|
}
|