1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 | import { Document, Feature, JsAstNode, Property, Resolvable, ScannedProperty, SourceRange, Warning } from '../model/model';
|
15 | import { Annotation as JsDocAnnotation } from './jsdoc';
|
16 |
|
17 |
|
18 |
|
19 | export declare class ScannedNamespace implements Resolvable {
|
20 | name: string;
|
21 | description?: string;
|
22 | summary?: string;
|
23 | jsdoc?: JsDocAnnotation;
|
24 | sourceRange: SourceRange;
|
25 | astNode: JsAstNode;
|
26 | warnings: Warning[];
|
27 | properties: Map<string, ScannedProperty>;
|
28 | constructor(name: string, description: string, summary: string, astNode: JsAstNode, properties: Map<string, ScannedProperty>, jsdoc: JsDocAnnotation, sourceRange: SourceRange);
|
29 | resolve(_document: Document): Namespace;
|
30 | }
|
31 | declare module '../model/queryable' {
|
32 | interface FeatureKindMap {
|
33 | 'namespace': Namespace;
|
34 | }
|
35 | }
|
36 | export declare class Namespace implements Feature {
|
37 | name: string;
|
38 | description?: string;
|
39 | summary?: string;
|
40 | kinds: Set<string>;
|
41 | identifiers: Set<string>;
|
42 | sourceRange: SourceRange;
|
43 | astNode: JsAstNode;
|
44 | warnings: Warning[];
|
45 | readonly properties: Map<string, Property>;
|
46 | constructor(scannedNamespace: ScannedNamespace);
|
47 | toString(): string;
|
48 | }
|