UNPKG

@studyportals/sp-hs-misc

Version:

Miscellaneous code used in HouseStark's projects

9 lines (8 loc) 252 B
/** * Configuration interface for the service layer request sender. * * @property {string} [userAgent] - Optional user agent string to be used in the request headers. */ export interface IServiceLayerRequestSenderConfig { userAgent?: string; }