https://github.com/angular/angular
Raw File
Tip revision: bd8c08a2843819541be44d5bc17f82dc3a2ee945 authored by Jessica Janiuk on 30 August 2023, 18:24:50 UTC
release: cut the v17.0.0-next.2 release
Tip revision: bd8c08a
platform_core_providers.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
 */

import {createPlatformFactory, PlatformRef} from './application_ref';
import {StaticProvider} from './di';

/**
 * This platform has to be included in any other platform
 *
 * @publicApi
 */
export const platformCore: (extraProviders?: StaticProvider[]|undefined) => PlatformRef =
    createPlatformFactory(null, 'core', []);
back to top