This commit is contained in:
Nuckyz 2024-05-11 05:47:53 -03:00
parent 1b64419ef1
commit 09a6a9bf85
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9
2 changed files with 6 additions and 6 deletions

View file

@ -68,7 +68,7 @@ export type FormText = ComponentType<PropsWithChildren<{
type?: string;
}> & TextProps> & { Types: FormTextTypes; };
type Forms = {
export type Forms = {
FormTitle: t.FormTitle,
FormSection: t.FormSection,
FormDivider: t.FormDivider,

View file

@ -184,14 +184,14 @@ export class GuildStore extends FluxStore {
getAllGuildRoles(): Record<string, Record<string, Role>>;
}
type MessageStore = t.FluxStore & Omit<Stores.MessageStore, "getMessages"> & {
export type MessageStore = t.FluxStore & Omit<Stores.MessageStore, "getMessages"> & {
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 */