Skip to content

Commit

Permalink
[fix] resource types
Browse files Browse the repository at this point in the history
  • Loading branch information
scott-wyatt committed Sep 16, 2018
1 parent c174fdb commit c7b72e6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions lib/Fabrix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ export class FabrixApp extends EventEmitter {
private _spools: {[key: string]: Spool | ServerSpool | ExtensionSpool | DatastoreSpool | SystemSpool | ToolSpool | MiscSpool }
private _resources: string[] = [ ]

public controllers: {[key: string]: FabrixGeneric } // FabrixController }
public services: {[key: string]: FabrixGeneric } // FabrixService }
public policies: {[key: string]: FabrixGeneric } // FabrixPolicy }
public models: {[key: string]: FabrixGeneric } // FabrixModel }
public resolvers: {[key: string]: any } // FabrixResolver }
public controllers: {[key: string]: FabrixController }
public services: {[key: string]: FabrixService }
public policies: {[key: string]: FabrixPolicy }
public models: {[key: string]: FabrixModel }
public resolvers: {[key: string]: FabrixResolver }

/**
* @param app.pkg The application package.json
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fabrix/fabrix",
"version": "1.5.0",
"version": "1.5.1",
"description": "Strongly Typed Modern Web Application Framework for Node.js",
"keywords": [
"framework",
Expand Down

0 comments on commit c7b72e6

Please sign in to comment.