mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
The deprecation notice for platform-webworker APIs is too prescriptive and notes that we will remove the package in version 10. Since we are not planning to do this for version 10, this commit updates the notice to read "a future version of Angular". PR Close #37052
22 lines
534 B
TypeScript
22 lines
534 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. 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.io/license
|
|
*/
|
|
|
|
/**
|
|
* @module
|
|
* @description
|
|
* Entry point for all public APIs of the common package.
|
|
*/
|
|
|
|
import {Version} from '@angular/core';
|
|
|
|
/**
|
|
* @publicApi
|
|
* @deprecated platform-webworker is deprecated in Angular and will be removed in a future version
|
|
* of Angular
|
|
*/
|
|
export const VERSION = new Version('0.0.0-PLACEHOLDER');
|