docs: convert all @experimental tags to @publicApi tags (#26595)

PR Close #26595
This commit is contained in:
Pete Bacon Darwin
2018-10-19 12:12:20 +01:00
committed by Alex Rickabaugh
parent 4bd9f53e8f
commit 24521f549c
116 changed files with 331 additions and 331 deletions

View File

@ -11,7 +11,7 @@ import {MessageBus} from './message_bus';
import {Serializer, SerializerTypes} from './serializer';
/**
* @experimental WebWorker support in Angular is experimental.
* @publicApi
*/
@Injectable()
export class ClientMessageBrokerFactory {
@ -38,7 +38,7 @@ interface PromiseCompleter {
}
/**
* @experimental WebWorker support in Angular is experimental.
* @publicApi
*/
export class ClientMessageBroker {
private _pending = new Map<string, PromiseCompleter>();
@ -141,7 +141,7 @@ interface ResponseMessageData {
}
/**
* @experimental WebWorker support in Angular is experimental.
* @publicApi
*/
export class FnArg {
constructor(
@ -149,7 +149,7 @@ export class FnArg {
}
/**
* @experimental WebWorker support in Angular is experimental.
* @publicApi
*/
export class UiArguments {
constructor(public method: string, public args?: FnArg[]) {}

View File

@ -16,7 +16,7 @@ import {EventEmitter, NgZone} from '@angular/core';
* given channel to one MessageBusSink are received on the same channel
* by the corresponding MessageBusSource.
*
* @experimental WebWorker support in Angular is currenlty experimental.
* @publicApi
*/
export abstract class MessageBus implements MessageBusSource, MessageBusSink {
/**
@ -51,7 +51,7 @@ export abstract class MessageBus implements MessageBusSource, MessageBusSink {
}
/**
* @experimental WebWorker support in Angular is currenlty experimental.
* @publicApi
*/
export interface MessageBusSource {
/**
@ -77,7 +77,7 @@ export interface MessageBusSource {
}
/**
* @experimental WebWorker support in Angular is currenlty experimental.
* @publicApi
*/
export interface MessageBusSink {
/**

View File

@ -11,7 +11,7 @@ import {RenderStore} from './render_store';
/**
* @experimental WebWorker support in Angular is currently experimental.
* @publicApi
*/
export const enum SerializerTypes {
// RendererType2

View File

@ -12,7 +12,7 @@ import {Serializer, SerializerTypes} from '../shared/serializer';
/**
* @experimental WebWorker support in Angular is currently experimental.
* @publicApi
*/
@Injectable()
export class ServiceMessageBrokerFactory {
@ -39,7 +39,7 @@ export class ServiceMessageBrokerFactory {
* the UIMessageBroker deserializes its arguments and calls the registered method.
* If that method returns a promise, the UIMessageBroker returns the result to the worker.
*
* @experimental WebWorker support in Angular is currently experimental.
* @publicApi
*/
export class ServiceMessageBroker {
private _sink: EventEmitter<any>;
@ -90,7 +90,7 @@ export class ServiceMessageBroker {
}
/**
* @experimental WebWorker support in Angular is currently experimental.
* @publicApi
*/
export interface ReceivedMessage {
method: string;