2022-10-18 22:04:55 +00:00
|
|
|
import * as _spitroast from "spitroast";
|
2022-10-22 17:59:01 +00:00
|
|
|
import _React from "react";
|
2023-01-14 16:24:14 +00:00
|
|
|
import _RN from "react-native";
|
2023-02-04 18:44:33 +00:00
|
|
|
import _Clipboard from "@react-native-clipboard/clipboard";
|
2023-02-14 18:33:42 +00:00
|
|
|
import _moment from "moment";
|
2022-10-18 22:04:55 +00:00
|
|
|
|
|
|
|
type MetroModules = { [id: number]: any };
|
|
|
|
|
2023-02-13 20:34:58 +00:00
|
|
|
// Component types
|
|
|
|
interface SummaryProps {
|
|
|
|
label: string;
|
|
|
|
icon?: string;
|
|
|
|
noPadding?: boolean;
|
2023-03-04 22:33:00 +00:00
|
|
|
noAnimation?: boolean;
|
2023-02-13 20:34:58 +00:00
|
|
|
children: JSX.Element | JSX.Element[];
|
|
|
|
}
|
|
|
|
|
2023-02-26 02:20:01 +00:00
|
|
|
interface ErrorBoundaryProps {
|
|
|
|
children: JSX.Element | JSX.Element[],
|
|
|
|
}
|
|
|
|
|
2022-10-18 22:04:55 +00:00
|
|
|
// Helper types for API functions
|
|
|
|
type PropIntellisense<P extends string | symbol> = Record<P, any> & Record<PropertyKey, any>;
|
|
|
|
type PropsFinder = <T extends string | symbol>(...props: T[]) => PropIntellisense<T>;
|
|
|
|
type PropsFinderAll = <T extends string | symbol>(...props: T[]) => PropIntellisense<T>[];
|
|
|
|
|
|
|
|
type LoggerFunction = (...messages: any[]) => void;
|
|
|
|
interface Logger {
|
2022-10-22 17:59:01 +00:00
|
|
|
log: LoggerFunction;
|
|
|
|
info: LoggerFunction;
|
|
|
|
warn: LoggerFunction;
|
|
|
|
error: LoggerFunction;
|
|
|
|
time: LoggerFunction;
|
|
|
|
trace: LoggerFunction;
|
|
|
|
verbose: LoggerFunction;
|
2022-10-18 22:04:55 +00:00
|
|
|
}
|
|
|
|
|
2022-10-18 22:21:58 +00:00
|
|
|
type SearchFilter = (tree: any) => boolean;
|
|
|
|
interface FindInTreeOptions {
|
|
|
|
walkable?: string[];
|
|
|
|
ignore?: string[];
|
|
|
|
maxDepth?: number;
|
|
|
|
}
|
|
|
|
|
2022-10-22 22:26:06 +00:00
|
|
|
interface Asset {
|
|
|
|
name: string;
|
|
|
|
id: number;
|
|
|
|
}
|
|
|
|
|
2023-02-26 22:56:36 +00:00
|
|
|
export enum ButtonColors {
|
2023-02-26 21:26:01 +00:00
|
|
|
BRAND = "brand",
|
|
|
|
RED = "red",
|
|
|
|
GREEN = "green",
|
|
|
|
PRIMARY = "primary",
|
|
|
|
TRANSPARENT = "transparent",
|
|
|
|
GREY = "grey",
|
|
|
|
LIGHTGREY = "lightgrey",
|
|
|
|
WHITE = "white",
|
|
|
|
LINK = "link"
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ConfirmationAlertOptions {
|
|
|
|
title: string | undefined;
|
|
|
|
content: string | JSX.Element | JSX.Element[];
|
|
|
|
confirmText: string | undefined;
|
|
|
|
confirmColor: ButtonColors | undefined;
|
|
|
|
onConfirm: () => void;
|
|
|
|
cancelText: string | undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface InputAlertProps {
|
|
|
|
title: string | undefined;
|
|
|
|
confirmText: string | undefined;
|
|
|
|
confirmColor: ButtonColors | undefined;
|
|
|
|
onConfirm: (input: string) => void | Promise<void>;
|
|
|
|
cancelText: string | undefined;
|
|
|
|
placeholder: string | undefined;
|
|
|
|
initialValue: string | undefined;
|
|
|
|
}
|
|
|
|
|
2023-01-04 22:39:28 +00:00
|
|
|
interface PluginAuthor {
|
|
|
|
name: string;
|
|
|
|
id: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
// See https://github.com/vendetta-mod/polymanifest
|
2023-01-03 00:18:19 +00:00
|
|
|
interface PluginManifest {
|
|
|
|
name: string;
|
|
|
|
description: string;
|
2023-01-04 22:39:28 +00:00
|
|
|
authors: PluginAuthor[];
|
|
|
|
main: string;
|
|
|
|
hash: string;
|
|
|
|
// Vendor-specific field, contains our own data
|
2023-01-16 08:11:46 +00:00
|
|
|
vendetta?: {
|
|
|
|
icon?: string;
|
2023-01-04 22:39:28 +00:00
|
|
|
};
|
2023-01-03 00:18:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
interface Plugin {
|
|
|
|
id: string;
|
|
|
|
manifest: PluginManifest;
|
|
|
|
enabled: boolean;
|
2023-01-07 23:05:14 +00:00
|
|
|
update: boolean;
|
2023-01-03 00:18:19 +00:00
|
|
|
js: string;
|
|
|
|
}
|
|
|
|
|
2023-01-10 08:05:56 +00:00
|
|
|
interface Settings {
|
|
|
|
debuggerUrl: string;
|
|
|
|
developerSettings: boolean;
|
|
|
|
}
|
|
|
|
|
2023-01-30 00:40:56 +00:00
|
|
|
interface ApplicationCommand {
|
2023-01-25 08:28:48 +00:00
|
|
|
description: string;
|
|
|
|
name: string;
|
|
|
|
options: ApplicationCommandOption[];
|
|
|
|
execute: (args: any[], ctx: CommandContext) => CommandResult | void | Promise<CommandResult> | Promise<void>;
|
|
|
|
id?: string;
|
|
|
|
applicationId: string;
|
|
|
|
displayName: string;
|
|
|
|
displayDescription: string;
|
|
|
|
inputType: ApplicationCommandInputType;
|
|
|
|
type: ApplicationCommandType;
|
|
|
|
}
|
|
|
|
|
2023-02-26 22:56:36 +00:00
|
|
|
export enum ApplicationCommandInputType {
|
2023-01-25 08:28:48 +00:00
|
|
|
BUILT_IN,
|
|
|
|
BUILT_IN_TEXT,
|
|
|
|
BUILT_IN_INTEGRATION,
|
|
|
|
BOT,
|
|
|
|
PLACEHOLDER,
|
|
|
|
}
|
|
|
|
|
2023-01-30 00:40:56 +00:00
|
|
|
interface ApplicationCommandOption {
|
2023-01-25 08:28:48 +00:00
|
|
|
name: string;
|
|
|
|
description: string;
|
|
|
|
required?: boolean;
|
|
|
|
type: ApplicationCommandOptionType;
|
|
|
|
displayName: string;
|
|
|
|
displayDescription: string;
|
|
|
|
}
|
|
|
|
|
2023-02-26 22:56:36 +00:00
|
|
|
export enum ApplicationCommandOptionType {
|
2023-01-25 08:28:48 +00:00
|
|
|
SUB_COMMAND = 1,
|
|
|
|
SUB_COMMAND_GROUP,
|
|
|
|
STRING,
|
|
|
|
INTEGER,
|
|
|
|
BOOLEAN,
|
|
|
|
USER,
|
|
|
|
CHANNEL,
|
|
|
|
ROLE,
|
|
|
|
MENTIONABLE,
|
|
|
|
NUMBER,
|
|
|
|
ATTACHMENT,
|
|
|
|
}
|
|
|
|
|
2023-02-26 22:56:36 +00:00
|
|
|
export enum ApplicationCommandType {
|
2023-01-25 08:28:48 +00:00
|
|
|
CHAT = 1,
|
|
|
|
USER,
|
|
|
|
MESSAGE,
|
|
|
|
}
|
|
|
|
|
2023-01-30 00:40:56 +00:00
|
|
|
interface CommandContext {
|
2023-01-25 08:28:48 +00:00
|
|
|
channel: any;
|
|
|
|
guild: any;
|
|
|
|
}
|
|
|
|
|
2023-01-30 00:40:56 +00:00
|
|
|
interface CommandResult {
|
2023-01-25 08:28:48 +00:00
|
|
|
content: string;
|
|
|
|
tts?: boolean;
|
|
|
|
}
|
|
|
|
|
2023-01-14 16:24:14 +00:00
|
|
|
interface RNConstants extends _RN.PlatformConstants {
|
2023-01-14 16:05:08 +00:00
|
|
|
// Android
|
|
|
|
Version: number;
|
|
|
|
Release: string;
|
|
|
|
Serial: string;
|
|
|
|
Fingerprint: string;
|
|
|
|
Model: string;
|
|
|
|
Brand: string;
|
|
|
|
Manufacturer: string;
|
|
|
|
ServerHost?: string;
|
|
|
|
|
|
|
|
// iOS
|
|
|
|
forceTouchAvailable: boolean;
|
|
|
|
interfaceIdiom: string;
|
|
|
|
osVersion: string;
|
|
|
|
systemName: string;
|
|
|
|
}
|
|
|
|
|
2023-01-16 23:52:20 +00:00
|
|
|
/**
|
|
|
|
* A key-value storage based upon `SharedPreferences` on Android.
|
|
|
|
*
|
|
|
|
* These types are based on Android though everything should be the same between
|
|
|
|
* platforms.
|
|
|
|
*/
|
|
|
|
interface MMKVManager {
|
|
|
|
/**
|
|
|
|
* Get the value for the given `key`, or null
|
|
|
|
* @param key The key to fetch
|
|
|
|
*/
|
|
|
|
getItem: (key: string) => Promise<string | null>;
|
|
|
|
/**
|
|
|
|
* Deletes the value for the given `key`
|
|
|
|
* @param key The key to delete
|
|
|
|
*/
|
|
|
|
removeItem: (key: string) => void;
|
|
|
|
/**
|
|
|
|
* Sets the value of `key` to `value`
|
|
|
|
*/
|
|
|
|
setItem: (key: string, value: string) => void;
|
|
|
|
/**
|
|
|
|
* Goes through every item in storage and returns it, excluding the
|
|
|
|
* keys specified in `exclude`.
|
|
|
|
* @param exclude A list of items to exclude from result
|
|
|
|
*/
|
|
|
|
refresh: (exclude: string[]) => Promise<Record<string, string>>;
|
|
|
|
/**
|
|
|
|
* You will be murdered if you use this function.
|
|
|
|
* Clears ALL of Discord's settings.
|
|
|
|
*/
|
|
|
|
clear: () => void;
|
|
|
|
}
|
|
|
|
|
2023-02-06 07:48:55 +00:00
|
|
|
interface DCDFileManager {
|
|
|
|
/**
|
|
|
|
* @param path **Full** path to file
|
|
|
|
*/
|
|
|
|
fileExists: (path: string) => Promise<boolean>;
|
|
|
|
/**
|
|
|
|
* Allowed URI schemes on Android: `file://`, `content://` ([See here](https://developer.android.com/reference/android/content/ContentResolver#accepts-the-following-uri-schemes:_3))
|
|
|
|
*/
|
|
|
|
getSize: (uri: string) => Promise<boolean>;
|
|
|
|
/**
|
|
|
|
* @param path **Full** path to file
|
|
|
|
* @param encoding Set to `base64` in order to encode response
|
|
|
|
*/
|
|
|
|
readFile(path: string, encoding: "base64" | "utf8"): Promise<string>;
|
|
|
|
/**
|
2023-02-09 21:48:43 +00:00
|
|
|
* Beware! This function has differing functionality on iOS and Android.
|
2023-02-06 07:48:55 +00:00
|
|
|
* @param storageDir Either `cache` or `documents`.
|
|
|
|
* @param path Path in `storageDir`, parents are recursively created.
|
|
|
|
* @param data The data to write to the file
|
|
|
|
* @param encoding Set to `base64` if `data` is base64 encoded.
|
|
|
|
* @returns Promise that resolves to path of the file once it got written
|
|
|
|
*/
|
|
|
|
writeFile(storageDir: "cache" | "documents", path: string, data: string, encoding: "base64" | "utf8"): Promise<string>;
|
|
|
|
getConstants: () => {
|
|
|
|
/**
|
|
|
|
* The path the `documents` storage dir (see {@link writeFile}) represents.
|
|
|
|
*/
|
|
|
|
DocumentsDirPath: string;
|
|
|
|
};
|
|
|
|
/**
|
|
|
|
* Will apparently cease to exist some time in the future so please use {@link getConstants} instead.
|
|
|
|
* @deprecated
|
|
|
|
*/
|
|
|
|
DocumentsDirPath: string;
|
|
|
|
}
|
|
|
|
|
2023-01-03 00:18:19 +00:00
|
|
|
type Indexable<Type> = { [index: string]: Type }
|
|
|
|
|
2023-01-30 14:15:44 +00:00
|
|
|
type EmitterEvent = "SET" | "GET" | "DEL";
|
2023-01-29 21:05:47 +00:00
|
|
|
|
|
|
|
interface EmitterListenerData {
|
2023-02-26 21:26:01 +00:00
|
|
|
path: string[];
|
|
|
|
value?: any;
|
2023-01-29 21:05:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type EmitterListener = (
|
2023-02-26 21:26:01 +00:00
|
|
|
event: EmitterEvent,
|
|
|
|
data: EmitterListenerData | any
|
2023-01-29 21:05:47 +00:00
|
|
|
) => any;
|
|
|
|
|
|
|
|
type EmitterListeners = Indexable<Set<EmitterListener>>;
|
|
|
|
|
|
|
|
interface Emitter {
|
|
|
|
listeners: EmitterListeners;
|
|
|
|
on: (event: EmitterEvent, listener: EmitterListener) => void;
|
|
|
|
off: (event: EmitterEvent, listener: EmitterListener) => void;
|
|
|
|
once: (event: EmitterEvent, listener: EmitterListener) => void;
|
|
|
|
emit: (event: EmitterEvent, data: EmitterListenerData) => void;
|
|
|
|
}
|
|
|
|
|
2023-02-06 07:48:55 +00:00
|
|
|
interface StorageBackend {
|
|
|
|
get: () => unknown | Promise<unknown>;
|
|
|
|
set: (data: unknown) => void | Promise<void>;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface LoaderConfig {
|
|
|
|
customLoadUrl: {
|
|
|
|
enabled: boolean;
|
|
|
|
url: string;
|
|
|
|
};
|
|
|
|
loadReactDevTools: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface LoaderIdentity {
|
|
|
|
name: string;
|
|
|
|
features: {
|
|
|
|
loaderConfig?: boolean;
|
|
|
|
devtools?: {
|
|
|
|
prop: string;
|
|
|
|
version: string;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-18 22:04:55 +00:00
|
|
|
interface VendettaObject {
|
|
|
|
patcher: {
|
|
|
|
after: typeof _spitroast.after;
|
|
|
|
before: typeof _spitroast.before;
|
|
|
|
instead: typeof _spitroast.instead;
|
2022-10-22 17:59:01 +00:00
|
|
|
};
|
2022-10-18 22:04:55 +00:00
|
|
|
metro: {
|
2023-02-22 00:25:14 +00:00
|
|
|
find: (filter: (m: any) => boolean) => any;
|
|
|
|
findAll: (filter: (m: any) => boolean) => any[];
|
2022-10-18 22:04:55 +00:00
|
|
|
findByProps: PropsFinder;
|
|
|
|
findByPropsAll: PropsFinderAll;
|
2023-01-30 21:03:16 +00:00
|
|
|
findByDisplayName: (name: string, defaultExp?: boolean) => any;
|
|
|
|
findByDisplayNameAll: (name: string, defaultExp?: boolean) => any[];
|
2023-02-14 18:28:27 +00:00
|
|
|
findByStoreName: (name: string) => any;
|
2022-10-22 17:59:01 +00:00
|
|
|
common: {
|
2022-10-28 17:50:40 +00:00
|
|
|
constants: PropIntellisense<"API_HOST">;
|
|
|
|
channels: PropIntellisense<"getVoiceChannelId">;
|
|
|
|
i18n: PropIntellisense<"Messages">;
|
|
|
|
url: PropIntellisense<"openURL">;
|
|
|
|
toasts: PropIntellisense<"open" | "close">;
|
2023-02-04 02:29:45 +00:00
|
|
|
stylesheet: PropIntellisense<"createThemedStyleSheet">;
|
2023-02-04 18:44:33 +00:00
|
|
|
clipboard: typeof _Clipboard;
|
2023-02-04 02:29:45 +00:00
|
|
|
assets: PropIntellisense<"registerAsset">;
|
|
|
|
invites: PropIntellisense<"acceptInviteAndTransitionToInviteChannel">;
|
2023-02-04 17:11:50 +00:00
|
|
|
commands: PropIntellisense<"getBuiltInCommands">;
|
2023-02-04 02:29:45 +00:00
|
|
|
navigation: PropIntellisense<"pushLazy">;
|
|
|
|
navigationStack: PropIntellisense<"createStackNavigator">;
|
|
|
|
NavigationNative: PropIntellisense<"NavigationContainer">;
|
2023-02-09 21:48:43 +00:00
|
|
|
// You may ask: "Why not just install Flux's types?"
|
|
|
|
// Answer: Discord have a (presumably proprietary) fork. It's wildly different.
|
|
|
|
Flux: PropIntellisense<"connectStores">;
|
|
|
|
FluxDispatcher: PropIntellisense<"_currentDispatchActionType">;
|
2022-10-22 17:59:01 +00:00
|
|
|
React: typeof _React;
|
|
|
|
ReactNative: typeof _RN;
|
2023-02-14 18:33:42 +00:00
|
|
|
moment: typeof _moment;
|
2022-10-22 17:59:01 +00:00
|
|
|
};
|
|
|
|
};
|
2022-10-28 17:50:40 +00:00
|
|
|
constants: {
|
|
|
|
DISCORD_SERVER: string;
|
|
|
|
GITHUB: string;
|
2023-02-26 21:26:01 +00:00
|
|
|
HTTP_REGEX: RegExp;
|
2022-10-28 17:50:40 +00:00
|
|
|
};
|
|
|
|
utils: {
|
|
|
|
copyText: (content: string) => void;
|
2023-02-14 18:51:45 +00:00
|
|
|
findInReactTree: (tree: { [key: string]: any }, filter: SearchFilter) => any;
|
2022-10-28 17:50:40 +00:00
|
|
|
findInTree: (tree: { [key: string]: any }, filter: SearchFilter, options: FindInTreeOptions) => any;
|
2023-02-04 17:05:47 +00:00
|
|
|
safeFetch: (input: RequestInfo, options: RequestInit) => Promise<Response>;
|
2023-02-04 02:37:36 +00:00
|
|
|
unfreeze: (obj: object) => object;
|
2022-10-28 17:50:40 +00:00
|
|
|
};
|
|
|
|
debug: {
|
|
|
|
connectToDebugger: (url: string) => void;
|
2023-02-04 02:29:45 +00:00
|
|
|
// TODO: Type output?
|
|
|
|
getDebugInfo: () => void;
|
2022-10-28 17:50:40 +00:00
|
|
|
}
|
2022-10-22 22:26:06 +00:00
|
|
|
ui: {
|
2022-10-28 17:50:40 +00:00
|
|
|
components: {
|
2023-02-13 20:34:58 +00:00
|
|
|
// Discord
|
2023-01-05 23:07:58 +00:00
|
|
|
Forms: PropIntellisense<"Form" | "FormSection">;
|
|
|
|
General: PropIntellisense<"Button" | "Text" | "View">;
|
2023-02-09 21:48:43 +00:00
|
|
|
Search: _React.ComponentType;
|
2023-02-26 21:26:01 +00:00
|
|
|
Alert: _React.ComponentType;
|
2023-02-13 20:34:58 +00:00
|
|
|
// Vendetta
|
2023-02-26 22:24:38 +00:00
|
|
|
Summary: _React.ComponentType<SummaryProps>;
|
|
|
|
ErrorBoundary: _React.ComponentType<ErrorBoundaryProps>;
|
2022-10-28 17:50:40 +00:00
|
|
|
}
|
|
|
|
toasts: {
|
|
|
|
showToast: (content: string, asset: number) => void;
|
|
|
|
};
|
2023-02-26 21:26:01 +00:00
|
|
|
alerts: {
|
|
|
|
showConfirmationAlert: (options: ConfirmationAlertOptions) => void;
|
|
|
|
showCustomAlert: (component: _React.ComponentType, props: any) => void;
|
|
|
|
showInputAlert: (options: InputAlertProps) => void;
|
|
|
|
};
|
2022-10-22 22:26:06 +00:00
|
|
|
assets: {
|
2023-01-07 23:06:36 +00:00
|
|
|
all: Indexable<Asset>;
|
2022-10-22 22:26:06 +00:00
|
|
|
find: (filter: (a: any) => void) => Asset | null | undefined;
|
|
|
|
getAssetByName: (name: string) => Asset;
|
2022-10-22 23:05:04 +00:00
|
|
|
getAssetByID: (id: number) => Asset;
|
2022-10-22 22:26:06 +00:00
|
|
|
getAssetIDByName: (name: string) => number;
|
2022-10-28 17:50:40 +00:00
|
|
|
};
|
2023-02-21 17:59:29 +00:00
|
|
|
// TODO: Make a vain attempt to type these
|
|
|
|
semanticColors: Indexable<any>;
|
|
|
|
rawColors: Indexable<any>;
|
2022-10-22 22:26:06 +00:00
|
|
|
};
|
2023-01-08 23:24:00 +00:00
|
|
|
plugins: {
|
|
|
|
plugins: Indexable<Plugin>;
|
2023-01-30 00:40:56 +00:00
|
|
|
fetchPlugin: (id: string, enabled: boolean) => void;
|
2023-02-09 21:48:43 +00:00
|
|
|
installPlugin: (id: string, enabled: boolean) => void;
|
2023-01-08 23:27:10 +00:00
|
|
|
evalPlugin: (plugin: Plugin) => void;
|
2023-02-04 02:29:45 +00:00
|
|
|
stopPlugin: (id: string, disable: boolean) => void;
|
2023-01-08 23:24:00 +00:00
|
|
|
removePlugin: (id: string) => void;
|
|
|
|
getSettings: (id: string) => JSX.Element;
|
2023-01-25 08:28:48 +00:00
|
|
|
};
|
|
|
|
commands: {
|
|
|
|
registerCommand: (command: ApplicationCommand) => () => void;
|
|
|
|
};
|
2023-01-29 21:05:47 +00:00
|
|
|
storage: {
|
2023-01-30 15:33:33 +00:00
|
|
|
createProxy: <T>(target: T) => { proxy: T, emitter: Emitter };
|
|
|
|
useProxy: <T>(storage: T) => T;
|
2023-02-06 07:48:55 +00:00
|
|
|
createStorage: <T>(backend: StorageBackend) => Promise<Awaited<T>>;
|
2023-01-30 15:33:33 +00:00
|
|
|
wrapSync: <T extends Promise<any>>(store: T) => Awaited<T>;
|
|
|
|
awaitSyncWrapper: (store: any) => Promise<void>;
|
2023-02-06 07:48:55 +00:00
|
|
|
createMMKVBackend: (store: string) => StorageBackend;
|
|
|
|
createFileBackend: (file: string) => StorageBackend;
|
2023-01-29 21:05:47 +00:00
|
|
|
};
|
2023-01-10 22:05:40 +00:00
|
|
|
settings: Settings;
|
2023-02-06 07:48:55 +00:00
|
|
|
loader: {
|
|
|
|
identity?: LoaderIdentity;
|
|
|
|
config: LoaderConfig;
|
|
|
|
};
|
2022-10-18 22:04:55 +00:00
|
|
|
logger: Logger;
|
2023-01-10 23:30:46 +00:00
|
|
|
version: string;
|
2023-02-04 02:29:45 +00:00
|
|
|
unload: () => void;
|
2022-10-18 22:04:55 +00:00
|
|
|
}
|
|
|
|
|
2023-01-30 21:34:14 +00:00
|
|
|
interface VendettaPluginObject {
|
2023-02-20 18:47:30 +00:00
|
|
|
id: string;
|
2023-02-14 18:35:48 +00:00
|
|
|
manifest: PluginManifest;
|
|
|
|
storage: Indexable<any>;
|
2023-01-30 21:34:14 +00:00
|
|
|
}
|
|
|
|
|
2022-10-18 22:04:55 +00:00
|
|
|
declare global {
|
2023-01-03 00:18:19 +00:00
|
|
|
type React = typeof _React;
|
2022-10-18 22:04:55 +00:00
|
|
|
interface Window {
|
|
|
|
[key: PropertyKey]: any;
|
|
|
|
modules: MetroModules;
|
|
|
|
vendetta: VendettaObject;
|
2023-01-03 00:18:19 +00:00
|
|
|
React: typeof _React;
|
2023-02-06 07:48:55 +00:00
|
|
|
__vendetta_loader?: LoaderIdentity;
|
2022-10-18 22:04:55 +00:00
|
|
|
}
|
2022-10-22 17:59:01 +00:00
|
|
|
}
|