Skip to content

Commit

Permalink
Updated references in module index
Browse files Browse the repository at this point in the history
  • Loading branch information
notheotherben committed Apr 23, 2015
1 parent f3d5a17 commit 3ebfedc
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
16 changes: 16 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/// <reference path="_references.d.ts" />
import _Core = require('./lib/Core');
import _Model = require('./lib/Model');
import _Instance = require('./lib/Instance');
import _Schema = require('./lib/Schema');
export = Iridium;
declare module Iridium {
class Core extends _Core {
}
class Model<TDocument, TInstance> extends _Model.Model<TDocument, TInstance> {
}
class Instance<TDocument, TInstance> extends _Instance<TDocument, TInstance> {
}
interface Schema extends _Schema {
}
}
3 changes: 1 addition & 2 deletions index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/// <reference path="./lib/Core.ts" />
/// <reference path="./lib/Model.ts" />
/// <reference path="./_references.d.ts" />

import _Core = require('./lib/Core');
import _Model = require('./lib/Model');
Expand Down

0 comments on commit 3ebfedc

Please sign in to comment.