Skip to content

Commit

Permalink
Exported plugin interface and renamed exported cache interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
notheotherben committed Apr 29, 2015
1 parent 34e8503 commit 07fb393
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
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.

7 changes: 5 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
import _Core = require('./lib/Core');
import _Model = require('./lib/Model');
import _Instance = require('./lib/Instance');

import _Plugin = require('./lib/Plugins');
import _Schema = require('./lib/Schema');
import _Cache = require('./lib/Cache');
import _CacheDirector = require('./lib/CacheDirector');
Expand All @@ -25,8 +27,9 @@ module Iridium {

export class CacheOnID extends _IDDirector { }

export interface Plugin extends _Plugin { }
export interface Schema extends _Schema { }
export interface ICache extends _Cache { }
export interface ICacheDirector extends _CacheDirector { }
export interface Cache extends _Cache { }
export interface CacheDirector extends _CacheDirector { }
export interface ModelOptions<TDocument, TInstance> extends _ModelOptions.IModelOptions<TDocument, TInstance> { }
}

0 comments on commit 07fb393

Please sign in to comment.