Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
Use deps.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
aronson committed Oct 31, 2023
1 parent c0e6c95 commit c87bb0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export type { NicklistEvent } from 'https://deno.land/x/irc@v0.15.0/plugins/nick
export type { CtcpActionEvent } from 'https://deno.land/x/irc@v0.15.0/plugins/action.ts';
export type { InviteEvent } from 'https://deno.land/x/irc@v0.15.0/plugins/invite.ts';
export type { AnyRawCommand } from 'https://deno.land/x/irc@v0.15.0/core/protocol.ts';
export type { CtcpVersionEvent } from 'https://deno.land/x/irc@v0.15.0/plugins/version.ts';
// Harmony/Discord exports
export {
AllowedMentionType,
Expand Down
2 changes: 1 addition & 1 deletion lib/ircClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
AnyRawCommand,
ClientError,
ClientOptions,
CtcpVersionEvent,
Dlog,
InviteEvent,
IrcClient,
Expand All @@ -19,7 +20,6 @@ import {
} from './deps.ts';
import { Dictionary, forEachAsync, tuple } from './helpers.ts';
import { Reflect } from './deps.ts';
import { CtcpVersionEvent } from 'https://deno.land/x/irc@v0.15.0/plugins/version.ts';

// deno-lint-ignore no-explicit-any
type Constructor<T = unknown> = new (...args: any[]) => T;
Expand Down

0 comments on commit c87bb0a

Please sign in to comment.