mirror of
https://github.com/dzeiocom/dotfiles.git
synced 2025-04-22 10:52:12 +00:00
15 lines
345 B
TypeScript
15 lines
345 B
TypeScript
import SimpleModule from "../SimpleModule";
|
|
import { getUserHome } from "../Functions";
|
|
import FileInterface from "../FileInterface";
|
|
|
|
export default class HyperJS extends SimpleModule {
|
|
files: FileInterface[] = [
|
|
{
|
|
displayName: "Config",
|
|
filename: "hyper.js.bak",
|
|
path: `${getUserHome()}/.hyper.js`
|
|
}
|
|
]
|
|
moduleName = "HyperJS"
|
|
}
|