mirror of
https://github.com/dzeiocom/dotfiles.git
synced 2025-04-22 10:52:12 +00:00
13 lines
260 B
TypeScript
13 lines
260 B
TypeScript
import { SingleBar } from "cli-progress";
|
|
import ListI from "./interfaces/Listr";
|
|
|
|
export default interface ModuleInterface {
|
|
moduleName?: string
|
|
|
|
save(): Promise<ListI>
|
|
load(): Promise<ListI>
|
|
|
|
isInstalled(): Promise<boolean>
|
|
custom(): Promise<boolean>
|
|
}
|