mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
35 lines
1,015 B
TypeScript
35 lines
1,015 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
|
|
import {ModuleWithProviders, NgModule} from '@angular/core';
|
|
|
|
import {provideServiceWorker, SwRegistrationOptions} from './provider';
|
|
import {SwPush} from './push';
|
|
import {SwUpdate} from './update';
|
|
|
|
/**
|
|
* @publicApi
|
|
*/
|
|
@NgModule({providers: [SwPush, SwUpdate]})
|
|
export class ServiceWorkerModule {
|
|
/**
|
|
* Register the given Angular Service Worker script.
|
|
*
|
|
* If `enabled` is set to `false` in the given options, the module will behave as if service
|
|
* workers are not supported by the browser, and the service worker will not be registered.
|
|
*/
|
|
static register(
|
|
script: string,
|
|
options: SwRegistrationOptions = {},
|
|
): ModuleWithProviders<ServiceWorkerModule> {
|
|
return {
|
|
ngModule: ServiceWorkerModule,
|
|
providers: [provideServiceWorker(script, options)],
|
|
};
|
|
}
|
|
}
|