Skip to content

Commit

Permalink
fix(file): type error
Browse files Browse the repository at this point in the history
  • Loading branch information
NoraH1to committed Mar 28, 2023
1 parent acff73a commit bd27315
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/File.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface Status {
exist: boolean;
}

type JsonObj = Record<string | number, object | Array<unknown> | string | number>;
type JsonObj = Record<string | number, any>;

type FileInfoConstructorOptions = {
pathname: string;
Expand Down

0 comments on commit bd27315

Please sign in to comment.