aboutsummaryrefslogtreecommitdiff
path: root/src/webpack
diff options
context:
space:
mode:
authorManti <67705577+mantikafasi@users.noreply.github.com>2022-11-16 02:40:46 +0300
committerGitHub <noreply@github.com>2022-11-16 00:40:46 +0100
commit84ec839b041a0da2a7a950c47f003d5bebfe4685 (patch)
tree54ec06d2ecc13ccbc3908194f60b277d24f9d70f /src/webpack
parentb30508aef8cd19625640ee650b58b557bb3fdd24 (diff)
downloadVencord-84ec839b041a0da2a7a950c47f003d5bebfe4685.tar.gz
Vencord-84ec839b041a0da2a7a950c47f003d5bebfe4685.tar.bz2
Vencord-84ec839b041a0da2a7a950c47f003d5bebfe4685.zip
Add ReviewDB Plugin (#187)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to 'src/webpack')
-rw-r--r--src/webpack/common.tsx2
-rw-r--r--src/webpack/webpack.ts6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/webpack/common.tsx b/src/webpack/common.tsx
index a8d67ca..9645172 100644
--- a/src/webpack/common.tsx
+++ b/src/webpack/common.tsx
@@ -172,7 +172,7 @@ export type TextProps = React.PropsWithChildren & {
variant: TextVariant;
style?: React.CSSProperties;
color?: string;
- tag?: "div" | "span" | "p" | "strong";
+ tag?: "div" | "span" | "p" | "strong" | `h${1 | 2 | 3 | 4 | 5 | 6}`;
selectable?: boolean;
lineClamp?: number;
id?: string;
diff --git a/src/webpack/webpack.ts b/src/webpack/webpack.ts
index df32132..1231d9e 100644
--- a/src/webpack/webpack.ts
+++ b/src/webpack/webpack.ts
@@ -139,11 +139,11 @@ export function findAll(filter: FilterFn, getDefault = true) {
/**
* Same as {@link find} but in bulk
- * @param filterFns Arry of filters. Please note that this array will be modified in place, so if you still
+ * @param filterFns Array of filters. Please note that this array will be modified in place, so if you still
* need it afterwards, pass a copy.
* @returns Array of results in the same order as the passed filters
*/
-export function bulk(...filterFns: FilterFn[]) {
+export const findBulk = traceFunction("findBulk", function findBulk(...filterFns: FilterFn[]) {
if (!Array.isArray(filterFns))
throw new Error("Invalid filters. Expected function[] got " + typeof filterFns);
@@ -216,7 +216,7 @@ export function bulk(...filterFns: FilterFn[]) {
}
return results;
-}
+});
/**
* Find the id of a module by its code