node-scripts-docs
Version:
Generate documentation for your `package.json` scripts.
22 lines • 710 B
TypeScript
import { FragmentStore } from "./FragmentStore.js";
import { ScriptStore } from "./ScriptStore.js";
/**
* Augments a script store with descriptions from a fragment store.
*/
export declare class StoreAugmenter {
/**
* The script store we're operating on.
*/
scriptStore: ScriptStore;
/**
* Constructs a new store augmenter.
* @param scriptStore - The script store to augment.
*/
constructor(scriptStore: ScriptStore);
/**
* Augment the script store with the given fragments.
* @param fragmentStore - The fragment store to pull the descriptions from.
*/
augment(fragmentStore: FragmentStore): void;
}
//# sourceMappingURL=StoreAugmenter.d.ts.map