now adheres to standard js

This commit is contained in:
2016-09-16 22:28:38 +02:00
parent febc3aa164
commit 3b83cfaaac
14 changed files with 196 additions and 97 deletions

View File

@@ -1,20 +1,20 @@
import * as plugins from "./npmextra.plugins";
import * as plugins from './npmextra.plugins'
type keyValueStoreTypes = "path" | "gitProject"
export type keyValueStoreTypes = 'path' | 'gitProject'
/**
* reads a keyValueFile from disk
*/
let kvRead = () => {
};
}
/**
* writes a key value file to disk
*/
let kvWrite = () => {
};
}
/**
* wipes a key value store from disk
@@ -24,11 +24,9 @@ let kevWipe = () => {
}
export class KeyValueStore {
constructor(optionsArg:{
constructor(optionsArg: {
type: keyValueStoreTypes
}){
}) {
};
}
}
}