Skip to content

Commit

Permalink
Export the Schema interfac
Browse files Browse the repository at this point in the history
  • Loading branch information
notheotherben committed Apr 21, 2015
1 parent d9aeb1e commit ea2ef66
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
import _Core = require('./lib/Core');
import _Model = require('./lib/Model');
import _Instance = require('./lib/Instance');
import _Schema = require('./lib/Schema');

export = Iridium;

module Iridium {
export class Core extends _Core { };
export class Model<TDocument, TInstance> extends _Model.Model<TDocument, TInstance> { };
export class Instance<TDocument, TInstance> extends _Instance<TDocument, TInstance> { };
export interface Schema extends _Schema { };
};

0 comments on commit ea2ef66

Please sign in to comment.