File tree 1 file changed +29
-5
lines changed
1 file changed +29
-5
lines changed Original file line number Diff line number Diff line change 1
- import { Story , InkList } from './src/ engine/Story'
2
- import { Compiler } from './src/ compiler/Compiler'
3
- import { CompilerOptions } from './src/ compiler/CompilerOptions'
4
- import { PosixFileHandler } from './src/ compiler/FileHandler/PosixFileHandler'
5
- import { JsonFileHandler } from './src/ compiler/FileHandler/JsonFileHandler'
1
+ import { Story , InkList } from './engine/Story'
2
+ import { Compiler } from './compiler/Compiler'
3
+ import { CompilerOptions } from './compiler/CompilerOptions'
4
+ import { PosixFileHandler } from './compiler/FileHandler/PosixFileHandler'
5
+ import { JsonFileHandler } from './compiler/FileHandler/JsonFileHandler'
6
6
7
7
declare interface Inkjs {
8
+ /**
9
+ * A Story is the core class that represents a complete Ink narrative, and
10
+ * manages runtime evaluation and state.
11
+ */
8
12
Story : typeof Story
13
+
14
+ /**
15
+ * The underlying type for a list item in Ink.
16
+ */
9
17
InkList : typeof InkList
18
+
19
+ /**
20
+ * Compiles Ink stories from source.
21
+ */
10
22
Compiler : typeof Compiler
23
+
24
+ /**
25
+ * Metadata options for a compiler pass.
26
+ */
11
27
CompilerOptions : typeof CompilerOptions
28
+
29
+ /**
30
+ * Resolves and loads Ink sources from a POSIX filesystem.
31
+ */
12
32
PosixFileHandler : typeof PosixFileHandler
33
+
34
+ /**
35
+ * Resolves and loads Ink sources from a JSON hierarchy.
36
+ */
13
37
JsonFileHandler : typeof JsonFileHandler
14
38
}
15
39
You can’t perform that action at this time.
0 commit comments