docs: convert all @experimental
tags to @publicApi
tags (#26595)
PR Close #26595
This commit is contained in:

committed by
Alex Rickabaugh

parent
4bd9f53e8f
commit
24521f549c
@ -14,7 +14,7 @@ export class EventListener {
|
||||
}
|
||||
|
||||
/**
|
||||
* @experimental All debugging apis are currently experimental.
|
||||
* @publicApi
|
||||
*/
|
||||
export class DebugNode {
|
||||
listeners: EventListener[] = [];
|
||||
@ -38,7 +38,7 @@ export class DebugNode {
|
||||
}
|
||||
|
||||
/**
|
||||
* @experimental All debugging apis are currently experimental.
|
||||
* @publicApi
|
||||
*/
|
||||
export class DebugElement extends DebugNode {
|
||||
name !: string;
|
||||
@ -126,7 +126,7 @@ export class DebugElement extends DebugNode {
|
||||
}
|
||||
|
||||
/**
|
||||
* @experimental
|
||||
* @publicApi
|
||||
*/
|
||||
export function asNativeElements(debugEls: DebugElement[]): any {
|
||||
return debugEls.map((el) => el.nativeElement);
|
||||
@ -162,7 +162,7 @@ function _queryNodeChildren(
|
||||
const _nativeNodeToDebugNode = new Map<any, DebugNode>();
|
||||
|
||||
/**
|
||||
* @experimental
|
||||
* @publicApi
|
||||
*/
|
||||
export function getDebugNode(nativeNode: any): DebugNode|null {
|
||||
return _nativeNodeToDebugNode.get(nativeNode) || null;
|
||||
@ -184,6 +184,6 @@ export function removeDebugNodeFromIndex(node: DebugNode) {
|
||||
* A boolean-valued function over a value, possibly including context information
|
||||
* regarding that value's position in an array.
|
||||
*
|
||||
* @experimental All debugging apis are currently experimental.
|
||||
* @publicApi
|
||||
*/
|
||||
export interface Predicate<T> { (value: T): boolean; }
|
||||
|
Reference in New Issue
Block a user