Skip to content

Commit

Permalink
fix: types added for the name
Browse files Browse the repository at this point in the history
  • Loading branch information
NishargShah authored Jan 24, 2025
1 parent e4aa773 commit c2052aa
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,20 @@ type Config = {
rules: Record<string, any>;
};

type FlatConfig = Config & {
name: string;
};

declare const _default: {
rules: Record<string, any>;
configs: {
recommended: Config;
vite: Config;
};
flatConfigs: {
recommended: FlatConfig;
vite: FlatConfig;
};
};

export = _default;

0 comments on commit c2052aa

Please sign in to comment.