UNPKG
aion-ics
Version:
latest (1.2.8)
1.2.8
1.2.7
1.2.6
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
Aion DSL language for managing ICalendar data
github.com/aionlang/aion
aionlang/aion
aion-ics
/
src
/
core
/
intepreter
/
helpers
/
io_system
/
ioSystem.ts
13 lines
(9 loc)
•
271 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** * IOSystem interface for file operations. * This interface defines the methods for importing and saving files. * */
export
interface
IOSystem
{
importFile
(
path
:
string
):
string
;
saveFile
(
fileName
:
string
,
fileContents
:
string
):
boolean
; }