mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
23 lines
851 B
Text
23 lines
851 B
Text
/*!
|
|
* @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.dev/license
|
|
*/
|
|
|
|
/**
|
|
******************************************************************************
|
|
* DO NOT MANUALLY EDIT THIS FILE. THIS FILE IS AUTOMATICALLY GENERATED.
|
|
******************************************************************************
|
|
*/
|
|
|
|
import {Type} from '@angular/core';
|
|
|
|
/**
|
|
* Map of the previews components, values are functions which returns the promise of the component type, which will be displayed as preview in the ExampleViewer component.
|
|
* Keys has to be equal to paths written down in the docs markdown files.
|
|
*/
|
|
export const PREVIEWS_COMPONENTS_MAP: Record<string, () => Promise<Type<unknown>>> = {
|
|
${previewsComponents}
|
|
};
|