diff --git a/src/webpack/common/types/components.d.ts b/src/webpack/common/types/components.d.ts index 1fcdddd0a..c27168749 100644 --- a/src/webpack/common/types/components.d.ts +++ b/src/webpack/common/types/components.d.ts @@ -68,7 +68,7 @@ export type FormText = ComponentType & TextProps> & { Types: FormTextTypes; }; -type Forms = { +export type Forms = { FormTitle: t.FormTitle, FormSection: t.FormSection, FormDivider: t.FormDivider, diff --git a/src/webpack/common/types/stores.d.ts b/src/webpack/common/types/stores.d.ts index 5095eb004..146386d2e 100644 --- a/src/webpack/common/types/stores.d.ts +++ b/src/webpack/common/types/stores.d.ts @@ -184,14 +184,14 @@ export class GuildStore extends FluxStore { getAllGuildRoles(): Record>; } -type MessageStore = t.FluxStore & Omit & { +export type MessageStore = t.FluxStore & Omit & { getMessages(channelId: string): any; }; -type UserStore = t.FluxStore & Stores.UserStore; -type SelectedChannelStore = t.FluxStore & Stores.SelectedChannelStore; -type ChannelStore = t.FluxStore & Stores.ChannelStore; -type GuildMemberStore = t.FluxStore & Stores.GuildMemberStore; +export type UserStore = t.FluxStore & Stores.UserStore; +export type SelectedChannelStore = t.FluxStore & Stores.SelectedChannelStore; +export type ChannelStore = t.FluxStore & Stores.ChannelStore; +export type GuildMemberStore = t.FluxStore & Stores.GuildMemberStore; type RelationshipStore = t.FluxStore & Stores.RelationshipStore & { /** Get the date (as a string) that the relationship was created */