Skip to content

Commit

Permalink
fix(CoreEmoji): export named class instead of default
Browse files Browse the repository at this point in the history
  • Loading branch information
favna committed Jan 14, 2022
1 parent 990be5b commit 35d02d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arguments/CoreEmoji.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Identifiers } from '../lib/errors/Identifiers';
import { EmojiObject, resolveEmoji } from '../lib/resolvers/emoji';
import { Argument, ArgumentResult } from '../lib/structures/Argument';

export default class extends Argument<EmojiObject> {
export class CoreArgument extends Argument<EmojiObject> {
public constructor(context: PieceContext) {
super(context, { name: 'emoji' });
}
Expand Down

0 comments on commit 35d02d8

Please sign in to comment.