Skip to content

Commit

Permalink
fix: abstract create method ๐Ÿ›
Browse files Browse the repository at this point in the history
  • Loading branch information
ChoGathK committed Oct 12, 2022
1 parent a02bd1c commit db6fb55
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/struct/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ export abstract class AsyncProviderFactory implements IAsyncProviderFactory {
return FactoryProviderStore.get(this.name);
}

public create(): FactoryProvider {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
public create(...args: any[]): FactoryProvider {
// do somethings ...
return null;
}
Expand Down

0 comments on commit db6fb55

Please sign in to comment.