File tree 3 files changed +0
-32
lines changed
goldens/public-api/common
3 files changed +0
-32
lines changed Original file line number Diff line number Diff line change @@ -345,12 +345,6 @@ export function isPlatformBrowser(platformId: Object): boolean;
345
345
// @public
346
346
export function isPlatformServer(platformId : Object ): boolean ;
347
347
348
- // @public @deprecated
349
- export function isPlatformWorkerApp(platformId : Object ): boolean ;
350
-
351
- // @public @deprecated
352
- export function isPlatformWorkerUi(platformId : Object ): boolean ;
353
-
354
348
// @public
355
349
export class JsonPipe implements PipeTransform {
356
350
// (undocumented)
Original file line number Diff line number Diff line change @@ -89,12 +89,8 @@ export {
89
89
export {
90
90
PLATFORM_BROWSER_ID as ɵPLATFORM_BROWSER_ID ,
91
91
PLATFORM_SERVER_ID as ɵPLATFORM_SERVER_ID ,
92
- PLATFORM_WORKER_APP_ID as ɵPLATFORM_WORKER_APP_ID ,
93
- PLATFORM_WORKER_UI_ID as ɵPLATFORM_WORKER_UI_ID ,
94
92
isPlatformBrowser ,
95
93
isPlatformServer ,
96
- isPlatformWorkerApp ,
97
- isPlatformWorkerUi ,
98
94
} from './platform_id' ;
99
95
export { VERSION } from './version' ;
100
96
export { ViewportScroller , NullViewportScroller as ɵNullViewportScroller } from './viewport_scroller' ;
Original file line number Diff line number Diff line change 8
8
9
9
export const PLATFORM_BROWSER_ID = 'browser' ;
10
10
export const PLATFORM_SERVER_ID = 'server' ;
11
- export const PLATFORM_WORKER_APP_ID = 'browserWorkerApp' ;
12
- export const PLATFORM_WORKER_UI_ID = 'browserWorkerUi' ;
13
11
14
12
/**
15
13
* Returns whether a platform id represents a browser platform.
@@ -26,23 +24,3 @@ export function isPlatformBrowser(platformId: Object): boolean {
26
24
export function isPlatformServer ( platformId : Object ) : boolean {
27
25
return platformId === PLATFORM_SERVER_ID ;
28
26
}
29
-
30
- /**
31
- * Returns whether a platform id represents a web worker app platform.
32
- * @publicApi
33
- * @deprecated This function serves no purpose since the removal of the Webworker platform. It will
34
- * always return `false`.
35
- */
36
- export function isPlatformWorkerApp ( platformId : Object ) : boolean {
37
- return platformId === PLATFORM_WORKER_APP_ID ;
38
- }
39
-
40
- /**
41
- * Returns whether a platform id represents a web worker UI platform.
42
- * @publicApi
43
- * @deprecated This function serves no purpose since the removal of the Webworker platform. It will
44
- * always return `false`.
45
- */
46
- export function isPlatformWorkerUi ( platformId : Object ) : boolean {
47
- return platformId === PLATFORM_WORKER_UI_ID ;
48
- }
You can’t perform that action at this time.
0 commit comments