Remove non-standard "type annotations"

Since we're not actually using Flow.
This commit is contained in:
Nick Farina
2015-07-17 08:57:56 -07:00
parent 94ad9eddcb
commit bf5fc50fa6
8 changed files with 44 additions and 44 deletions

View File

@@ -3,7 +3,7 @@ import { User, Config } from './user';
export class Server {
constructor(providers:object) {
constructor(providers) {
this.providers = providers; // providers[name] = loaded provider JS module
}