1 | declare module '@ember/application/namespace' {
|
2 | |
3 |
|
4 |
|
5 | import { findNamespace, processAllNamespaces } from '@ember/-internals/metal';
|
6 | import EmberObject from '@ember/object';
|
7 | |
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 | class Namespace extends EmberObject {
|
25 | static NAMESPACES: import('@ember/-internals/metal/lib/namespace_search').Namespace[];
|
26 | static NAMESPACES_BY_ID: {
|
27 | [name: string]: import('@ember/-internals/metal/lib/namespace_search').Namespace;
|
28 | };
|
29 | static processAll: typeof processAllNamespaces;
|
30 | static byName: typeof findNamespace;
|
31 | isNamespace: true;
|
32 | init(properties: object | undefined): void;
|
33 | toString(): string;
|
34 | nameClasses(): void;
|
35 | destroy(): this;
|
36 | }
|
37 | export default Namespace;
|
38 | }
|