Skip to content

Commit

Permalink
Added implements StatsLike to StatsCommon
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed Mar 21, 2024
1 parent bfc4283 commit 6e52836
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export interface StatsLike {
* Provides information about a particular entry in the file system.
* Common code used by both Stats and BigIntStats.
*/
export abstract class StatsCommon<T extends number | bigint> implements Node.StatsBase<T> {
export abstract class StatsCommon<T extends number | bigint> implements Node.StatsBase<T>, StatsLike {
protected abstract _isBigint: boolean;

protected get _typename(): string {
Expand Down

0 comments on commit 6e52836

Please sign in to comment.