Variable frontendFsProviderConst

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

The service provider that once registered on the container will set an instance of FrontendFs as the frontendFs service.

Example

// Register it on the container
container.register(frontendFsProvider);
// Getting access to the service instance
const frontendFs = container.get<FrontendFs>('frontendFs');

Generated using TypeDoc