diff --git a/book-content/chapters/13-modules-scripts-declaration-files.md b/book-content/chapters/13-modules-scripts-declaration-files.md index ad9ee12..da96346 100644 --- a/book-content/chapters/13-modules-scripts-declaration-files.md +++ b/book-content/chapters/13-modules-scripts-declaration-files.md @@ -388,7 +388,7 @@ Like before, we are not including any implementation code in the `.d.ts` file Once the `duration-utils.d.ts` file is created, the module can be imported and used as usual: ```typescript -import { formatDuration, parseTrackData } from "duration-utils"; +import { formatDuration } from "duration-utils"; const formattedTime = formatDuration(309); ```