https://github.com/angular/angular
Revision d7468049856dfa07dc9f1ddf084bf37f13feb3d9 authored by Thibaut ACKERMANN on 28 October 2020, 13:35:59 UTC, committed by Alex Rickabaugh on 28 October 2020, 18:06:06 UTC
ActivationEnd goes to ActivationEnd and not to ActivationStart section

PR Close #39469
1 parent 17fe000
Raw File
Tip revision: d7468049856dfa07dc9f1ddf084bf37f13feb3d9 authored by Thibaut ACKERMANN on 28 October 2020, 13:35:59 UTC
docs(router): Fix ActivationEnd link (#39469)
Tip revision: d746804
goog.d.ts
/**
 * @license
 * Copyright Google LLC 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
 */


/**
 * Typings for google closure.
 */
declare namespace goog {
  /**
   * Note: Don't use this to check for advanced compilation,
   * as it is sometimes true.
   */
  export const DEBUG: boolean;
  export const LOCALE: string;
  export const getMsg: (input: string, placeholders?: {[key: string]: string}) => string;
}

/**
 * Use this flag to check for advanced compilation.
 */
declare const COMPILED: boolean;
back to top