Skip to content

Commit

Permalink
refactor: 🎨 update types
Browse files Browse the repository at this point in the history
  • Loading branch information
stormslowly committed Mar 29, 2023
1 parent d79adba commit a2863b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion __test__/performance.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {test} from 'vitest'
import {readFileSync} from 'fs'
import {join} from "path";
// @ts-ignore
import {parseFiles, parseFilesTokio8, parseFilesSync, parseFilesJsonStr} from "../index";
import {parseFiles, parseFilesSync,} from "../index";

let files: string[] = [];

Expand Down
2 changes: 2 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,6 @@ export declare function parseCode(code: string, fileName?: string | undefined |

export declare function parseFiles(files: string[]): Promise<Record<string, Declaration[]>>;

export declare function parseFilesSync(files: string[]): Record<string, Declaration[]>;

export {};

0 comments on commit a2863b0

Please sign in to comment.