Skip to content

Commit c3cc921

Browse files
committed
restructure typings
1 parent 0d0d561 commit c3cc921

File tree

81 files changed

+21483
-7808
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+21483
-7808
lines changed

src/typings.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "builder-coderoad",
3+
"dependencies": {},
4+
"globalDependencies": {
5+
"atom": "registry:dt/atom#0.0.0+20160505173316",
6+
"es6-promise": "registry:dt/es6-promise#0.0.0+20160614011821",
7+
"marked": "registry:dt/marked#0.0.0+20160325085301",
8+
"material-ui": "registry:dt/material-ui#0.15.1+20160824122606",
9+
"node": "registry:dt/node#6.0.0+20160831021119",
10+
"react": "registry:dt/react#0.14.0+20160829191040",
11+
"react-dom": "registry:dt/react-dom#0.14.0+20160412154040",
12+
"react-redux": "registry:dt/react-redux#4.4.0+20160724070751",
13+
"redux": "registry:dt/redux#3.5.2+20160703092728",
14+
"redux-form": "registry:dt/redux-form#4.0.3+20160803140805",
15+
"redux-logger": "registry:dt/redux-logger#2.6.0+20160619033847",
16+
"redux-thunk": "registry:dt/redux-thunk#2.1.0+20160703120921",
17+
"reselect": "registry:dt/reselect#2.0.2+20160319031821"
18+
}
19+
}

src/typings/assertion-error/assertion-error.d.ts

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/typings/atom/atom.d.ts

Lines changed: 0 additions & 1888 deletions
This file was deleted.

src/typings/cr/cli.d.ts

Lines changed: 0 additions & 14 deletions
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
declare module 'atom-plugin-command-line' {
22
export default function commandLine(root: string, commands?: string): Promise<string>;
3-
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
declare module 'coderoad-cli' {
2+
3+
interface IBuild {
4+
dir: string;
5+
filePath: string;
6+
output?: string;
7+
}
8+
9+
export function build(options: IBuild): boolean;
10+
11+
interface ICreate {
12+
dir: string;
13+
name: string;
14+
}
15+
16+
export function create(options: ICreate): boolean | Promise<boolean>;
17+
18+
export function tutorials(dir: string): Tutorial.Info[];
19+
20+
export function validatePacakgeJson(): Validation.Object;
21+
}

src/typings/emissary/emissary.d.ts

Lines changed: 0 additions & 61 deletions
This file was deleted.

0 commit comments

Comments
 (0)