https-jrtorres042-github-com
/
git_powershell-covid-19-credential-material_2-docs-content_diff-1
Public template
forked from angular/material2-docs-content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example-module.d.ts
executable file
·36 lines (36 loc) · 1.34 KB
/
example-module.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
******************************************************************************
* DO NOT MANUALLY EDIT THIS FILE. THIS FILE IS AUTOMATICALLY GENERATED.
******************************************************************************
*/
export interface LiveExample {
/** Title of the example. */
title: string;
/** Name of the example component. */
componentName: string;
/** Selector to match the component of this example. */
selector: string;
/** Name of the primary file of this example. */
primaryFile: string;
/** List of files which are part of the example. */
files: string[];
/** Path to the directory containing the example. */
packagePath: string;
/** List of additional components which are part of the example. */
additionalComponents: string[];
/** NgModule that declares this example. */
module: NgModuleInfo;
}
export interface NgModuleInfo {
/** Name of the NgModule. */
name: string;
/**
* Import specifier that resolves to this module. The specifier is not scoped to
* `@angular/components-examples` because it's up to the consumer how the module is
* imported. For example, in the docs app, modules are lazily imported from `fesm2015/`.
*/
importSpecifier: string;
}
export declare const EXAMPLE_COMPONENTS: {
[id: string]: LiveExample;
};