8 lines
222 B
TypeScript
8 lines
222 B
TypeScript
|
import { ILogPackageAuthenticated } from "./index";
|
||
|
|
||
|
export interface IRequest_SmartlogDestinationReceiver_Any_PostLogPackages {
|
||
|
method: 'postLogPackages';
|
||
|
request: {
|
||
|
logPackages: ILogPackageAuthenticated[];
|
||
|
};
|
||
|
}
|