forked from angular/material2-docs-content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
executable file
·58 lines (54 loc) · 1.96 KB
/
index.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
export declare const EXAMPLE_COMPONENTS: {
[id: string]: LiveExample;
};
/**
* Example data with information about component name, selector, files used in
* example, and path to examples.
*/
export declare class ExampleData {
/** Description of the example. */
description: string;
/** List of files that are part of this example. */
exampleFiles: string[];
/** Selector name of the example component. */
selectorName: string;
/** Name of the file that contains the example component. */
indexFilename: string;
/** Names of the components being used in this example. */
componentNames: string[];
constructor(example: string);
}
/**
******************************************************************************
* DO NOT MANUALLY EDIT THIS FILE. THIS FILE IS AUTOMATICALLY GENERATED.
******************************************************************************
*/
export declare 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 declare 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 { }