Skip to content

Commit

Permalink
fix(Utils): correct import for deno users
Browse files Browse the repository at this point in the history
  • Loading branch information
vladfrangu committed Apr 11, 2021
1 parent e47372c commit 42dd75f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- **GuildWelcomeScreenChannel:** document missing `description` property ([238695b](https://github.com/discordjs/discord-api-types/commit/238695b44d8547d51782e3d9d9729e2db85bc444))
- **OAuth2:** `scope` can be optional / not required ([bbe56a9](https://github.com/discordjs/discord-api-types/commit/bbe56a97564ce8c317f291080327484f0d987e1c))
- **OAuth2:** remove invalid parameters from refresh token request ([1c02450](https://github.com/discordjs/discord-api-types/commit/1c024507f3f55b922565845c2bedac615ffa24d5))
- **Utils:** correct import for deno users ([3eea63c](https://github.com/discordjs/discord-api-types/commit/3eea63c694ae6d45de521708c0c5c3cd20dd3b36))

### chore

Expand Down
2 changes: 1 addition & 1 deletion deno/utils/v8.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
APIDMInteraction,
APIGuildInteraction,
APIInteraction,
} from '../payloads.ts';
} from '../payloads/v8/mod.ts';

/**
* A type-guard check for guild interactions.
Expand Down
2 changes: 1 addition & 1 deletion utils/v8.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
APIDMInteraction,
APIGuildInteraction,
APIInteraction,
} from '../payloads';
} from '../payloads/v8/index';

/**
* A type-guard check for guild interactions.
Expand Down

0 comments on commit 42dd75f

Please sign in to comment.