update to use tapbundle

This commit is contained in:
2017-07-09 19:05:03 +02:00
parent 15e3497c55
commit 3dff5dbbc6
12 changed files with 236 additions and 134 deletions

View File

@@ -1,4 +1,7 @@
export declare type TKeyValueStore = 'path' | 'gitProject' | 'custom';
/**
* kvStore is a simple key vlaue store to store data about projects between runs
*/
export declare class KeyValueStore {
type: TKeyValueStore;
identity: string;
@@ -23,9 +26,5 @@ export declare class KeyValueStore {
/**
* computes the identity
*/
private initIdentity(customStringArg);
/**
* computes the filePath
*/
private initFilePath();
}