import * as plugins from '../plugins.js'; import * as authInterfaces from '../data/auth.js'; // Get Configuration (read-only) export interface IReq_GetConfiguration extends plugins.typedrequestInterfaces.implementsTR< plugins.typedrequestInterfaces.ITypedRequest, IReq_GetConfiguration > { method: 'getConfiguration'; request: { identity?: authInterfaces.IIdentity; section?: string; }; response: { config: any; section?: string; }; }