Skip to content

Commit cbb9cf5

Browse files
committed
Regenerate contents, updated tsconfig options
1 parent 86a3596 commit cbb9cf5

File tree

28 files changed

+1442
-5
lines changed

28 files changed

+1442
-5
lines changed

.baseDir.d.ts

Whitespace-only changes.

.baseDir.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export { Application } from "./lib/application";
2+
export { CliApplication } from "./lib/cli";
3+
export { EventDispatcher, Event } from "./lib/utils/events";
4+
export { resetReflectionID } from "./lib/models/reflections/abstract";
5+
export { normalizePath } from "./lib/utils/fs";
6+
export { ProjectReflection } from "./lib/models/reflections/project";

index.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/utils/component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export interface IComponentHost {
99
application:Application;
1010
}
1111

12-
interface IComponent extends AbstractComponent<IComponentHost> {
12+
export interface IComponent extends AbstractComponent<IComponentHost> {
1313

1414
}
1515

@@ -29,7 +29,7 @@ interface IComponentRegistry {
2929
}
3030

3131

32-
interface IComponentOptions {
32+
export interface IComponentOptions {
3333
name?:string;
3434
childClass?:Function;
3535
internal?:boolean;

src/lib/utils/events.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import * as _ from "lodash";
1111

1212

13-
interface IEventCallback extends Function {
13+
export interface IEventCallback extends Function {
1414
_callback?:Function;
1515
}
1616

test/converter/access/specs.json

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@
3939
"comment": {
4040
"shortText": "A variable that is made private via comment."
4141
},
42+
"sources": [
43+
{
44+
"fileName": "access.ts",
45+
"line": 37
46+
}
47+
],
4248
"type": {
4349
"type": "instrinct",
4450
"name": "string"
@@ -56,6 +62,12 @@
5662
"comment": {
5763
"shortText": "A variable that is made protected via comment."
5864
},
65+
"sources": [
66+
{
67+
"fileName": "access.ts",
68+
"line": 43
69+
}
70+
],
5971
"type": {
6072
"type": "instrinct",
6173
"name": "string"
@@ -87,6 +99,12 @@
8799
"name": "void"
88100
}
89101
}
102+
],
103+
"sources": [
104+
{
105+
"fileName": "access.ts",
106+
"line": 49
107+
}
90108
]
91109
},
92110
{
@@ -115,6 +133,12 @@
115133
"name": "void"
116134
}
117135
}
136+
],
137+
"sources": [
138+
{
139+
"fileName": "access.ts",
140+
"line": 55
141+
}
118142
]
119143
}
120144
],
@@ -135,6 +159,12 @@
135159
7
136160
]
137161
}
162+
],
163+
"sources": [
164+
{
165+
"fileName": "access.ts",
166+
"line": 31
167+
}
138168
]
139169
},
140170
{
@@ -149,6 +179,12 @@
149179
"comment": {
150180
"shortText": "A variable that is made private via comment."
151181
},
182+
"sources": [
183+
{
184+
"fileName": "access.ts",
185+
"line": 7
186+
}
187+
],
152188
"type": {
153189
"type": "instrinct",
154190
"name": "string"
@@ -167,6 +203,12 @@
167203
"comment": {
168204
"shortText": "A variable that is made protected via comment."
169205
},
206+
"sources": [
207+
{
208+
"fileName": "access.ts",
209+
"line": 13
210+
}
211+
],
170212
"type": {
171213
"type": "instrinct",
172214
"name": "string"
@@ -199,6 +241,12 @@
199241
"name": "void"
200242
}
201243
}
244+
],
245+
"sources": [
246+
{
247+
"fileName": "access.ts",
248+
"line": 19
249+
}
202250
]
203251
},
204252
{
@@ -227,6 +275,12 @@
227275
"name": "void"
228276
}
229277
}
278+
],
279+
"sources": [
280+
{
281+
"fileName": "access.ts",
282+
"line": 25
283+
}
230284
]
231285
}
232286
],
@@ -254,6 +308,12 @@
254308
13
255309
]
256310
}
311+
],
312+
"sources": [
313+
{
314+
"fileName": "access.ts",
315+
"line": 1
316+
}
257317
]
258318
}
259319
],

0 commit comments

Comments
 (0)