Skip to content

Commit

Permalink
style: Normalise imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
vxern committed Jul 27, 2024
1 parent 9ee36f9 commit 85f8d2a
Show file tree
Hide file tree
Showing 42 changed files with 71 additions and 71 deletions.
8 changes: 4 additions & 4 deletions source/constants/defaults.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { FeatureLanguage } from "logos:constants/languages/feature.ts";
import type { LearningLanguage } from "logos:constants/languages/learning.ts";
import type { Locale, LocalisationLanguage } from "logos:constants/languages/localisation.ts";
import type { TranslationLanguage } from "logos:constants/languages/translation.ts";
import type { FeatureLanguage } from "logos:constants/languages/feature";
import type { LearningLanguage } from "logos:constants/languages/learning";
import type { Locale, LocalisationLanguage } from "logos:constants/languages/localisation";
import type { TranslationLanguage } from "logos:constants/languages/translation";
import type { RateLimit, TimeStruct } from "logos/models/guild";

const FEATURE_LOCALE: Locale = "eng-US";
Expand Down
2 changes: 1 addition & 1 deletion source/constants/localisations.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Language } from "logos:constants/languages";
import type { LocalisationLanguage } from "logos:constants/languages/localisation.ts";
import type { LocalisationLanguage } from "logos:constants/languages/localisation";
import type { PartOfSpeech } from "logos:constants/parts-of-speech";
import armenian from "logos:constants/transformers/armenian";
import danish from "logos:constants/transformers/danish";
Expand Down
4 changes: 2 additions & 2 deletions source/constants/parts-of-speech.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { LearningLanguage } from "logos:constants/languages/learning.ts";
import type { LocalisationLanguage } from "logos:constants/languages/localisation.ts";
import type { LearningLanguage } from "logos:constants/languages/learning";
import type { LocalisationLanguage } from "logos:constants/languages/localisation";
import english from "logos:constants/parts-of-speech/english";
import french from "logos:constants/parts-of-speech/french";
import romanian from "logos:constants/parts-of-speech/romanian";
Expand Down
2 changes: 1 addition & 1 deletion source/library/adapters/databases/ravendb/document.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Collection } from "logos:constants/database";
import type { WithRequired } from "logos:core/utilities.ts";
import type { WithRequired } from "logos:core/utilities";
import type * as ravendb from "ravendb";

interface RavenDBDocumentMetadataContainer {
Expand Down
2 changes: 1 addition & 1 deletion source/library/adapters/detectors/adapter.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { DetectionLanguage } from "logos:constants/languages/detection";
import type { Licence } from "logos:constants/licences.ts";
import type { Licence } from "logos:constants/licences";
import type { Client } from "logos/client";
import { Logger } from "logos/logger";

Expand Down
2 changes: 1 addition & 1 deletion source/library/adapters/detectors/cld.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getCLDLanguageByLocale, isCLDLocale } from "logos:constants/languages/detection.ts";
import { getCLDLanguageByLocale, isCLDLocale } from "logos:constants/languages/detection";
import cld from "cldpre";
import { DetectorAdapter, type SingleDetectionResult } from "logos/adapters/detectors/adapter";
import type { Client } from "logos/client";
Expand Down
2 changes: 1 addition & 1 deletion source/library/adapters/detectors/eld.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getELDLanguageByLocale, isELDLocale } from "logos:constants/languages/detection.ts";
import { getELDLanguageByLocale, isELDLocale } from "logos:constants/languages/detection";
// @ts-expect-error: ELD is ES2015.
import { eld } from "eld";
import { DetectorAdapter, type SingleDetectionResult } from "logos/adapters/detectors/adapter";
Expand Down
2 changes: 1 addition & 1 deletion source/library/adapters/detectors/fasttext.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getFastTextLanguageByLocale, isFastTextLocale } from "logos:constants/languages/detection.ts";
import { getFastTextLanguageByLocale, isFastTextLocale } from "logos:constants/languages/detection";
import { getLanguageIdentificationModel } from "fasttext.wasm.js";
import { DetectorAdapter, type SingleDetectionResult } from "logos/adapters/detectors/adapter";
import type { Client } from "logos/client";
Expand Down
2 changes: 1 addition & 1 deletion source/library/adapters/detectors/tinyld.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getTinyLDLanguageByLocale, isTinyLDLocale } from "logos:constants/languages/detection.ts";
import { getTinyLDLanguageByLocale, isTinyLDLocale } from "logos:constants/languages/detection";
import { DetectorAdapter, type SingleDetectionResult } from "logos/adapters/detectors/adapter";
// REMINDER(vxern): Re-enable the package once it's fixed on Bun. (Weird exception getting thrown on startup)
import type { Client } from "logos/client";
Expand Down
4 changes: 2 additions & 2 deletions source/library/adapters/dictionaries/wordnik.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import {
type DictionaryEntry,
type Relations,
type Rhymes,
} from "logos/adapters/dictionaries/adapter.ts";
import type { Client } from "logos/client.ts";
} from "logos/adapters/dictionaries/adapter";
import type { Client } from "logos/client";

interface Result {
readonly relationshipType: string;
Expand Down
4 changes: 2 additions & 2 deletions source/library/adapters/translators/adapter.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Languages } from "logos:constants/languages";
import type { TranslationLanguage } from "logos:constants/languages/translation.ts";
import type { Licence } from "logos:constants/licences.ts";
import type { TranslationLanguage } from "logos:constants/languages/translation";
import type { Licence } from "logos:constants/licences";
import type { Client } from "logos/client";
import { Logger } from "logos/logger";

Expand Down
2 changes: 1 addition & 1 deletion source/library/adapters/translators/deepl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
getDeepLLanguageByLocale,
getDeepLLocaleByLanguage,
isDeepLLocale,
} from "logos:constants/languages/translation.ts";
} from "logos:constants/languages/translation";
import { type TranslationResult, TranslatorAdapter } from "logos/adapters/translators/adapter";
import type { Client } from "logos/client";

Expand Down
2 changes: 1 addition & 1 deletion source/library/adapters/translators/lingvanex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
getLingvanexLanguageByLocale,
getLingvanexLocaleByLanguage,
isLingvanexLocale,
} from "logos:constants/languages/translation.ts";
} from "logos:constants/languages/translation";
import { type TranslationResult, TranslatorAdapter } from "logos/adapters/translators/adapter";
import type { Client } from "logos/client";

Expand Down
4 changes: 2 additions & 2 deletions source/library/collectors.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { isAutocomplete, isSubcommand, isSubcommandGroup } from "logos:constants/interactions";
import { type LearningLanguage, getLocaleByLearningLanguage } from "logos:constants/languages/learning.ts";
import { getDiscordLanguageByLocale, getLocalisationLocaleByLanguage } from "logos:constants/languages/localisation.ts";
import { type LearningLanguage, getLocaleByLearningLanguage } from "logos:constants/languages/learning";
import { getDiscordLanguageByLocale, getLocalisationLocaleByLanguage } from "logos:constants/languages/localisation";
import type { Client } from "logos/client";
import { Guild } from "logos/models/guild";
import { User } from "logos/models/user";
Expand Down
4 changes: 2 additions & 2 deletions source/library/commands/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { handleDisplayGuildInformation } from "logos/commands/handlers/informati
import {
handleDisplayDetectorLicence,
handleDisplayDetectorLicenceAutocomplete,
} from "logos/commands/handlers/licence/detector.ts";
} from "logos/commands/handlers/licence/detector";
import {
handleDisplayDictionaryLicence,
handleDisplayDictionaryLicenceAutocomplete,
Expand All @@ -23,7 +23,7 @@ import {
import {
handleDisplayTranslatorLicence,
handleDisplayTranslatorLicenceAutocomplete,
} from "logos/commands/handlers/licence/translator.ts";
} from "logos/commands/handlers/licence/translator";
import {
handleDisplayAuthorPraises,
handleDisplayPraisesAutocomplete,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { WithRequired } from "logos:core/utilities.ts";
import type { WithRequired } from "logos:core/utilities";
import type { Client } from "logos/client";
import { InteractionCollector } from "logos/collectors";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Licence } from "logos:constants/licences.ts";
import type { Client } from "logos/client.ts";
import { SourceNotice } from "logos/commands/components/source-notices/source-notice.ts";
import type { Licence } from "logos:constants/licences";
import type { Client } from "logos/client";
import { SourceNotice } from "logos/commands/components/source-notices/source-notice";

class RecognitionSourceNotice extends SourceNotice {
constructor(client: Client, { interaction, sources }: { interaction: Logos.Interaction; sources: Licence[] }) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Client } from "logos/client";
import { InteractionCollector } from "logos/collectors.ts";
import { InteractionCollector } from "logos/collectors";

abstract class SourceNotice {
readonly client: Client;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Client } from "logos/client.ts";
import { SourceNotice } from "logos/commands/components/source-notices/source-notice.ts";
import type { Client } from "logos/client";
import { SourceNotice } from "logos/commands/components/source-notices/source-notice";

class TatoebaSourceNotice extends SourceNotice {
constructor(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Licence } from "logos:constants/licences.ts";
import type { Client } from "logos/client.ts";
import { SourceNotice } from "logos/commands/components/source-notices/source-notice.ts";
import type { Licence } from "logos:constants/licences";
import type { Client } from "logos/client";
import { SourceNotice } from "logos/commands/components/source-notices/source-notice";

class TranslationSourceNotice extends SourceNotice {
constructor(client: Client, { interaction, source }: { interaction: Logos.Interaction; source: Licence }) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Client } from "logos/client.ts";
import { SourceNotice } from "logos/commands/components/source-notices/source-notice.ts";
import type { Client } from "logos/client";
import { SourceNotice } from "logos/commands/components/source-notices/source-notice";

class WordSourceNotice extends SourceNotice {
constructor(client: Client, { interaction, sources }: { interaction: Logos.Interaction; sources: string[] }) {
Expand Down
6 changes: 3 additions & 3 deletions source/library/commands/fragments/autocomplete/language.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { trim } from "logos:core/formatting.ts";
import type { Client } from "logos/client.ts";
import { handleSimpleAutocomplete } from "logos/commands/fragments/autocomplete/simple.ts";
import { trim } from "logos:core/formatting";
import type { Client } from "logos/client";
import { handleSimpleAutocomplete } from "logos/commands/fragments/autocomplete/simple";

async function autocompleteLanguage(
client: Client,
Expand Down
2 changes: 1 addition & 1 deletion source/library/commands/fragments/autocomplete/simple.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Client } from "logos/client.ts";
import type { Client } from "logos/client";

async function handleSimpleAutocomplete<T>(
client: Client,
Expand Down
4 changes: 2 additions & 2 deletions source/library/commands/fragments/licence.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Licence } from "logos:constants/licences.ts";
import type { Client } from "logos/client.ts";
import type { Licence } from "logos:constants/licences";
import type { Client } from "logos/client";

async function handleDisplayLicence(
client: Client,
Expand Down
8 changes: 4 additions & 4 deletions source/library/commands/handlers/context.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { isLocalisationLanguage } from "logos:constants/languages/localisation";
import { getLocaleByLearningLanguage } from "logos:constants/languages/learning";
import { isLocalisationLanguage } from "logos:constants/languages/localisation";
import { shuffle } from "ioredis/built/utils";
import type { Client } from "logos/client.ts";
import { autocompleteLanguage } from "logos/commands/fragments/autocomplete/language.ts";
import type { SentencePair } from "logos/stores/volatile.ts";
import type { Client } from "logos/client";
import { autocompleteLanguage } from "logos/commands/fragments/autocomplete/language";
import type { SentencePair } from "logos/stores/volatile";

async function handleFindInContextAutocomplete(
client: Client,
Expand Down
2 changes: 1 addition & 1 deletion source/library/commands/handlers/game.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { capitalise } from "logos:core/formatting";
import * as levenshtein from "fastest-levenshtein";
import type { Client } from "logos/client";
import { InteractionCollector } from "logos/collectors";
import { TatoebaSourceNotice } from "logos/commands/components/source-notices/tatoeba-source-notice.ts";
import { TatoebaSourceNotice } from "logos/commands/components/source-notices/tatoeba-source-notice";
import { GuildStatistics } from "logos/models/guild-statistics";
import { User } from "logos/models/user";
import type { SentencePair } from "logos/stores/volatile";
Expand Down
4 changes: 2 additions & 2 deletions source/library/commands/handlers/licence/detector.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { getDetectorLicence, isValidLicensedDetector } from "logos:constants/licences";
import type { Client } from "logos/client";
import { handleSimpleAutocomplete } from "logos/commands/fragments/autocomplete/simple.ts";
import { handleDisplayLicence } from "logos/commands/fragments/licence.ts";
import { handleSimpleAutocomplete } from "logos/commands/fragments/autocomplete/simple";
import { handleDisplayLicence } from "logos/commands/fragments/licence";

async function handleDisplayDetectorLicenceAutocomplete(
client: Client,
Expand Down
4 changes: 2 additions & 2 deletions source/library/commands/handlers/licence/dictionary.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { getDictionaryLicence, isValidLicensedDictionary } from "logos:constants/licences";
import type { Client } from "logos/client";
import { handleSimpleAutocomplete } from "logos/commands/fragments/autocomplete/simple.ts";
import { handleDisplayLicence } from "logos/commands/fragments/licence.ts";
import { handleSimpleAutocomplete } from "logos/commands/fragments/autocomplete/simple";
import { handleDisplayLicence } from "logos/commands/fragments/licence";

async function handleDisplayDictionaryLicenceAutocomplete(
client: Client,
Expand Down
4 changes: 2 additions & 2 deletions source/library/commands/handlers/licence/software.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { isValidLicensedSoftware } from "logos:constants/licences.ts";
import { isValidLicensedSoftware } from "logos:constants/licences";
import { code } from "logos:core/formatting";
import type { Client } from "logos/client";
import { SoftwareLicenceView } from "logos/commands/components/paginated-views/software-licence-view";
import { handleSimpleAutocomplete } from "logos/commands/fragments/autocomplete/simple.ts";
import { handleSimpleAutocomplete } from "logos/commands/fragments/autocomplete/simple";

async function handleDisplaySoftwareLicenceAutocomplete(
client: Client,
Expand Down
4 changes: 2 additions & 2 deletions source/library/commands/handlers/licence/translator.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { getTranslatorLicence, isValidLicensedTranslator } from "logos:constants/licences";
import type { Client } from "logos/client";
import { handleSimpleAutocomplete } from "logos/commands/fragments/autocomplete/simple.ts";
import { handleDisplayLicence } from "logos/commands/fragments/licence.ts";
import { handleSimpleAutocomplete } from "logos/commands/fragments/autocomplete/simple";
import { handleDisplayLicence } from "logos/commands/fragments/licence";

async function handleDisplayTranslatorLicenceAutocomplete(
client: Client,
Expand Down
2 changes: 1 addition & 1 deletion source/library/commands/handlers/purge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { mention, timestamp, trim } from "logos:core/formatting";
import type { Client } from "logos/client";
import { InteractionCollector } from "logos/collectors";
import { Guild } from "logos/models/guild";
import { JournallingStore } from "logos/stores/journalling.ts";
import { JournallingStore } from "logos/stores/journalling";

async function handlePurgeMessagesAutocomplete(
client: Client,
Expand Down
2 changes: 1 addition & 1 deletion source/library/commands/handlers/recognise.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { DetectionLanguage } from "logos:constants/languages/detection";
import { list } from "logos:core/formatting";
import type { Client } from "logos/client";
import { RecognitionSourceNotice } from "logos/commands/components/source-notices/recognition-notice.ts";
import { RecognitionSourceNotice } from "logos/commands/components/source-notices/recognition-notice";

async function handleRecogniseLanguageChatInput(
client: Client,
Expand Down
2 changes: 1 addition & 1 deletion source/library/commands/handlers/settings/language/set.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import languages from "logos:constants/languages";
import { getLocalisationLocaleByLanguage, isLocalisationLanguage } from "logos:constants/languages/localisation.ts";
import { getLocalisationLocaleByLanguage, isLocalisationLanguage } from "logos:constants/languages/localisation";
import { trim } from "logos:core/formatting";
import type { Client } from "logos/client";
import { User } from "logos/models/user";
Expand Down
4 changes: 2 additions & 2 deletions source/library/commands/handlers/translate.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import languages, { type Languages, getTranslationLanguage } from "logos:constants/languages";
import { type TranslationLanguage, isTranslationLanguage } from "logos:constants/languages/translation.ts";
import { type TranslationLanguage, isTranslationLanguage } from "logos:constants/languages/translation";
import { trim } from "logos:core/formatting";
import type { TranslationResult } from "logos/adapters/translators/adapter";
import type { Client } from "logos/client";
import { TranslationSourceNotice } from "logos/commands/components/source-notices/translation-source-notice.ts";
import { TranslationSourceNotice } from "logos/commands/components/source-notices/translation-source-notice";

async function handleTranslateChatInputAutocomplete(
client: Client,
Expand Down
6 changes: 3 additions & 3 deletions source/library/commands/handlers/word.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { isLocalisationLanguage } from "logos:constants/languages/localisation.ts";
import { isLocalisationLanguage } from "logos:constants/languages/localisation";
import { type PartOfSpeech, isUnknownPartOfSpeech } from "logos:constants/parts-of-speech";
import { code, trim } from "logos:core/formatting";
import type { Definition, DictionaryEntry, Expression } from "logos/adapters/dictionaries/adapter";
import type { Client } from "logos/client";
import { InteractionCollector } from "logos/collectors";
import { WordSourceNotice } from "logos/commands/components/source-notices/word-source-notice.ts";
import { autocompleteLanguage } from "logos/commands/fragments/autocomplete/language.ts";
import { WordSourceNotice } from "logos/commands/components/source-notices/word-source-notice";
import { autocompleteLanguage } from "logos/commands/fragments/autocomplete/language";

async function handleFindWordAutocomplete(
client: Client,
Expand Down
2 changes: 1 addition & 1 deletion source/library/models/guild-statistics.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Locale } from "logos:constants/languages/localisation.ts";
import type { Locale } from "logos:constants/languages/localisation";
import type { Client } from "logos/client";
import { type IdentifierData, Model } from "logos/models/model";
import type { DatabaseStore } from "logos/stores/database";
Expand Down
4 changes: 2 additions & 2 deletions source/library/models/guild.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { FeatureLanguage } from "logos:constants/languages/feature.ts";
import type { LearningLanguage } from "logos:constants/languages/learning.ts";
import type { FeatureLanguage } from "logos:constants/languages/feature";
import type { LearningLanguage } from "logos:constants/languages/learning";
import type { LocalisationLanguage } from "logos:constants/languages/localisation";
import type { TimeStruct } from "logos:constants/time";
import type { Client } from "logos/client";
Expand Down
4 changes: 2 additions & 2 deletions source/library/services/prompts/tickets.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { codeMultiline, mention, trim } from "logos:core/formatting";
import type { Client } from "logos/client";
import type { EntryRequest } from "logos/models/entry-request.ts";
import { Model } from "logos/models/model.ts";
import type { EntryRequest } from "logos/models/entry-request";
import { Model } from "logos/models/model";
import { Ticket, type TicketFormData, type TicketType } from "logos/models/ticket";
import { User } from "logos/models/user";
import { PromptService } from "logos/services/prompts/service";
Expand Down
2 changes: 1 addition & 1 deletion source/library/stores/adapters/detectors.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { DetectionLanguage, Detector } from "logos:constants/languages/detection";
import type { Licence } from "logos:constants/licences.ts";
import type { Licence } from "logos:constants/licences";
import type { DetectorAdapter, SingleDetectionResult } from "logos/adapters/detectors/adapter";
import { CLDAdapter } from "logos/adapters/detectors/cld";
import { ELDAdapter } from "logos/adapters/detectors/eld";
Expand Down
2 changes: 1 addition & 1 deletion source/library/stores/adapters/dictionaries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { DictionaryAdapter } from "logos/adapters/dictionaries/adapter";
import { DexonlineAdapter } from "logos/adapters/dictionaries/dexonline";
import { DicolinkAdapter } from "logos/adapters/dictionaries/dicolink";
import { WiktionaryAdapter } from "logos/adapters/dictionaries/wiktionary";
import { WordnikAdapter } from "logos/adapters/dictionaries/wordnik.ts";
import { WordnikAdapter } from "logos/adapters/dictionaries/wordnik";
import { WordsAPIAdapter } from "logos/adapters/dictionaries/words-api";
import type { Client } from "logos/client";
import { Logger } from "logos/logger";
Expand Down
2 changes: 1 addition & 1 deletion source/library/stores/journalling/loggers.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { FeatureLanguage } from "logos:constants/languages/feature.ts";
import type { FeatureLanguage } from "logos:constants/languages/feature";
import type { Locale } from "logos:constants/languages/localisation";
import type { Client } from "logos/client";

Expand Down
2 changes: 1 addition & 1 deletion source/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type constants_ from "logos:constants/constants";
import type { FeatureLanguage, LearningLanguage, Locale, LocalisationLanguage } from "logos:constants/languages";
import type { Properties } from "logos:constants/properties";
import type { SlowmodeLevel } from "logos:constants/slowmode";
import type { WithRequired } from "logos:core/utilities.ts";
import type { WithRequired } from "logos:core/utilities";
import type { EntryRequest } from "logos/models/entry-request";
import type { Praise } from "logos/models/praise";
import type { Report } from "logos/models/report";
Expand Down

0 comments on commit 85f8d2a

Please sign in to comment.