UNPKG

259 BTypeScriptView Raw
1/**
2 * Pass this schematic to the "run" command to create a service worker
3 */
4export interface Schema {
5 /**
6 * The name of the project.
7 */
8 project: string;
9 /**
10 * The target to apply service worker to.
11 */
12 target?: string;
13}