Variable sendFileProviderConst

sendFileProvider: Resource<"provider", "register", ProviderRegisterFn<Jimpex>> = ...

The service provider that once registered on the container will set the result of sendFile as the sendFile service.

Example

// Register it on the container
container.register(sendFileProvider);
// Getting access to the service instance
const sendFile = container.get<SendFile>('sendFile');

Generated using TypeDoc