shell-ahk
Version:
`Lodash`/`jQuery` for `AHK`.
24 lines (20 loc) • 478 B
TypeScript
export type Constructor = (source: string) => void
export class FileShell {
source: string
constructor(source: string)
append(content: string): void
isExists(): boolean
read(): string
remove(): void
write(content: string): void
}
declare global {
interface FileShellConstructor {
new (source: string): FileShell
}
const FileShell: FileShellConstructor
}
declare module './fileShell' {
/** File operations shell class */
export default FileShell
}