now adheres to standard js
This commit is contained in:
@@ -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
|
||||
}){
|
||||
}) {
|
||||
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user