Skip to content

Commit

Permalink
Update import paths in ink.d.ts
Browse files Browse the repository at this point in the history
These relative paths were expecting the file to be nested inside the /src directory, but it is in the project root directory.
  • Loading branch information
maetl authored Mar 31, 2024
1 parent e0c166b commit 80fa6e9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ink.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Story, InkList } from './engine/Story'
import { Compiler } from './compiler/Compiler'
import { CompilerOptions } from './compiler/CompilerOptions'
import { PosixFileHandler } from './compiler/FileHandler/PosixFileHandler'
import { JsonFileHandler } from './compiler/FileHandler/JsonFileHandler'
import { Story, InkList } from './src/engine/Story'
import { Compiler } from './src/compiler/Compiler'
import { CompilerOptions } from './src/compiler/CompilerOptions'
import { PosixFileHandler } from './src/compiler/FileHandler/PosixFileHandler'
import { JsonFileHandler } from './src/compiler/FileHandler/JsonFileHandler'

declare interface Inkjs {
Story: typeof Story
Expand Down

0 comments on commit 80fa6e9

Please sign in to comment.