fix: imports (#1237)

This commit is contained in:
Jiralite
2025-05-11 10:06:54 +01:00
committed by GitHub
parent f5eb4b9e35
commit c64362a711
4 changed files with 4 additions and 4 deletions

2
deno/gateway/v9.ts generated
View File

@@ -38,10 +38,10 @@ import type {
APISoundboardSound,
GuildChannelType,
ThreadChannelType,
APIEntitlement,
} from '../payloads/v9/mod.ts';
import type { ReactionType } from '../rest/v9/mod.ts';
import type { _Nullable } from '../utils/internals.ts';
import type { APIEntitlement } from '../v10.ts';
export * from './common.ts';

View File

@@ -1,5 +1,5 @@
import type { Snowflake } from '../../globals.ts';
import type { APISoundboardSound } from '../../payloads/v10/mod.ts';
import type { APISoundboardSound } from '../../payloads/v9/mod.ts';
/**
* @see {@link https://discord.com/developers/docs/resources/soundboard#send-soundboard-sound}

View File

@@ -38,10 +38,10 @@ import type {
APISoundboardSound,
GuildChannelType,
ThreadChannelType,
APIEntitlement,
} from '../payloads/v9/index';
import type { ReactionType } from '../rest/v9/index';
import type { _Nullable } from '../utils/internals';
import type { APIEntitlement } from '../v10';
export * from './common';

View File

@@ -1,5 +1,5 @@
import type { Snowflake } from '../../globals';
import type { APISoundboardSound } from '../../payloads/v10/index';
import type { APISoundboardSound } from '../../payloads/v9/index';
/**
* @see {@link https://discord.com/developers/docs/resources/soundboard#send-soundboard-sound}