wtf?
This commit is contained in:
parent
1b64419ef1
commit
09a6a9bf85
2
src/webpack/common/types/components.d.ts
vendored
2
src/webpack/common/types/components.d.ts
vendored
|
@ -68,7 +68,7 @@ export type FormText = ComponentType<PropsWithChildren<{
|
||||||
type?: string;
|
type?: string;
|
||||||
}> & TextProps> & { Types: FormTextTypes; };
|
}> & TextProps> & { Types: FormTextTypes; };
|
||||||
|
|
||||||
type Forms = {
|
export type Forms = {
|
||||||
FormTitle: t.FormTitle,
|
FormTitle: t.FormTitle,
|
||||||
FormSection: t.FormSection,
|
FormSection: t.FormSection,
|
||||||
FormDivider: t.FormDivider,
|
FormDivider: t.FormDivider,
|
||||||
|
|
10
src/webpack/common/types/stores.d.ts
vendored
10
src/webpack/common/types/stores.d.ts
vendored
|
@ -184,14 +184,14 @@ export class GuildStore extends FluxStore {
|
||||||
getAllGuildRoles(): Record<string, Record<string, Role>>;
|
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;
|
getMessages(channelId: string): any;
|
||||||
};
|
};
|
||||||
|
|
||||||
type UserStore = t.FluxStore & Stores.UserStore;
|
export type UserStore = t.FluxStore & Stores.UserStore;
|
||||||
type SelectedChannelStore = t.FluxStore & Stores.SelectedChannelStore;
|
export type SelectedChannelStore = t.FluxStore & Stores.SelectedChannelStore;
|
||||||
type ChannelStore = t.FluxStore & Stores.ChannelStore;
|
export type ChannelStore = t.FluxStore & Stores.ChannelStore;
|
||||||
type GuildMemberStore = t.FluxStore & Stores.GuildMemberStore;
|
export type GuildMemberStore = t.FluxStore & Stores.GuildMemberStore;
|
||||||
|
|
||||||
type RelationshipStore = t.FluxStore & Stores.RelationshipStore & {
|
type RelationshipStore = t.FluxStore & Stores.RelationshipStore & {
|
||||||
/** Get the date (as a string) that the relationship was created */
|
/** Get the date (as a string) that the relationship was created */
|
||||||
|
|
Loading…
Reference in a new issue