mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-01-25 00:36:23 +00:00
I'm not gonna comment
This commit is contained in:
parent
356586d68f
commit
a0a1aaf0ed
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ export const SYM_LAZY_COMPONENT_INNER = Symbol.for("vencord.lazyComponent.inner"
|
|||
export type LazyComponentType<P extends AnyRecord = AnyRecord> = React.FunctionComponent<P> & AnyRecord & {
|
||||
[SYM_LAZY_COMPONENT_INNER]: () => AnyComponentType<P> | null;
|
||||
};
|
||||
export type AnyLazyComponentType<P extends AnyRecord> = LazyComponentType<P & AnyRecord>;
|
||||
export type AnyLazyComponentType<P extends AnyRecord = AnyRecord> = LazyComponentType<P & AnyRecord>;
|
||||
|
||||
/**
|
||||
* A lazy component. The factory method is called on first render.
|
||||
|
|
Loading…
Reference in a new issue