forked from angular/components
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample-module.template
26 lines (24 loc) · 950 Bytes
/
example-module.template
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
/**
******************************************************************************
* 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[];
/** Path from which to import the xample. */
importPath: string;
}
export const EXAMPLE_COMPONENTS: {[id: string]: LiveExample} = ${exampleComponents};