fix compiled filenames
This commit is contained in:
31
dist/npmextra.classes.keyvaluestore.d.ts
vendored
Normal file
31
dist/npmextra.classes.keyvaluestore.d.ts
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
export declare type keyValueStoreTypes = 'path' | 'gitProject' | 'customString';
|
||||
export declare class KeyValueStore {
|
||||
type: string;
|
||||
identity: string;
|
||||
filePath: string;
|
||||
constructor(typeArg: keyValueStoreTypes, identityStringArg?: string);
|
||||
/**
|
||||
* reads a keyValueFile from disk
|
||||
*/
|
||||
read(): void;
|
||||
/**
|
||||
* writes a key value file to disk
|
||||
*/
|
||||
write(): void;
|
||||
/**
|
||||
* wipes a key value store from disk
|
||||
*/
|
||||
wipe(): void;
|
||||
/**
|
||||
* updates a value
|
||||
*/
|
||||
update(): void;
|
||||
/**
|
||||
* computes the identity
|
||||
*/
|
||||
private initIdentity(identityStringArg);
|
||||
/**
|
||||
* computes the filePath
|
||||
*/
|
||||
private initFilePath();
|
||||
}
|
||||
Reference in New Issue
Block a user