diff options
author | Aylur <[email protected]> | 2024-10-18 12:07:13 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-10-18 12:07:52 +0000 |
commit | e7762eb33a8d5d8c216a42fb6634b8cd87fa9f14 (patch) | |
tree | fffc3fab9ac75b88c98e40afb464297f92947a54 /lang/gjs/src/file.ts | |
parent | 4628ed573e87788a673943b0b53b394d42f4c9b3 (diff) |
reexport modules
- Gio from file
- GLib from gobject
- AstalIO.Process from process
- AstalIO.Time from time
Diffstat (limited to 'lang/gjs/src/file.ts')
-rw-r--r-- | lang/gjs/src/file.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lang/gjs/src/file.ts b/lang/gjs/src/file.ts index 7b9de3a..6ad8be3 100644 --- a/lang/gjs/src/file.ts +++ b/lang/gjs/src/file.ts @@ -1,5 +1,7 @@ import Astal from "gi://AstalIO" -import Gio from "gi://Gio" +import Gio from "gi://Gio?version=2.0" + +export { Gio } export function readFile(path: string): string { return Astal.read_file(path) || "" |