This commit is contained in:
CHEVALLIER Abel
2025-11-13 16:23:22 +01:00
parent de9c515a47
commit cb235644dc
34924 changed files with 3811102 additions and 0 deletions

17
node_modules/@schematics/angular/service-worker/schema.d.ts generated vendored Executable file
View File

@@ -0,0 +1,17 @@
/**
* Adds a service worker to your project. Service workers enable your application to work
* offline or on low-quality networks by caching assets and intercepting network requests.
* This schematic configures your project to use a service worker.
*/
export type Schema = {
/**
* The name of the project to add the service worker to. If not specified, the CLI will
* determine the project from the current directory.
*/
project: string;
/**
* The build target to apply the service worker to. This is typically `build`, indicating
* that the service worker should be generated during the standard build process.
*/
target?: string;
};