13 lines
327 B
TypeScript
13 lines
327 B
TypeScript
import * as plugins from '../plugins.js';
|
|
|
|
export interface IRequest_Log extends plugins.typedrequestInterfaces.implementsTR<
|
|
plugins.typedrequestInterfaces.ITypedRequest,
|
|
IRequest_Log
|
|
> {
|
|
method: 'log';
|
|
request: {
|
|
authToken: string;
|
|
logPackages: plugins.smartlogInterfaces.ILogPackage[];
|
|
},
|
|
response: {};
|
|
} |