Skip to content

Commit

Permalink
docs: reference updated types in README
Browse files Browse the repository at this point in the history
  • Loading branch information
kyranet authored and favna committed Nov 16, 2023
1 parent 0927d90 commit dde535e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/i18next/README.md
Expand Up @@ -69,7 +69,7 @@ import { Command } from '@sapphire/framework';
import type { Message } from 'discord.js';

export class PingCommand extends Command {
public constructor(context: Command.Context, options: Command.Options) {
public constructor(context: Command.LoaderContext, options: Command.Options) {
super(context, {
...options,
description: 'ping pong'
Expand All @@ -91,7 +91,7 @@ import { Command } from '@sapphire/framework';
import type { Message } from 'discord.js';

export class PingCommand extends Command {
public constructor(context: Command.Context, options: Command.Options) {
public constructor(context: Command.LoaderContext, options: Command.Options) {
super(context, {
...options,
description: 'ping pong'
Expand All @@ -113,7 +113,7 @@ import { Command } from '@sapphire/framework';
import type { Message } from 'discord.js';

export class PingCommand extends Command {
public constructor(context: Command.Context, options: Command.Options) {
public constructor(context: Command.LoaderContext, options: Command.Options) {
super(context, {
...options,
description: 'ping pong'
Expand All @@ -135,7 +135,7 @@ import { Command } from '@sapphire/framework';
import type { Message } from 'discord.js';

export class PingCommand extends Command {
public constructor(context: Command.Context, options: Command.Options) {
public constructor(context: Command.LoaderContext, options: Command.Options) {
super(context, {
...options,
description: 'ping pong'
Expand Down

0 comments on commit dde535e

Please sign in to comment.