b2049209ff
There are some style differences compared to prettier, and not all are necessarily an improvement, but it's much faster now.
21 lines
649 B
TypeScript
21 lines
649 B
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
import type { SvelteComponentDev } from "svelte/internal";
|
|
|
|
export interface DynamicSvelteComponent<
|
|
T extends typeof SvelteComponentDev = typeof SvelteComponentDev,
|
|
> {
|
|
component: T;
|
|
[k: string]: unknown;
|
|
}
|
|
|
|
export const dynamicComponent = <
|
|
Comp extends typeof SvelteComponentDev,
|
|
DefaultProps = NonNullable<ConstructorParameters<Comp>[0]["props"]>,
|
|
>(
|
|
component: Comp,
|
|
) =>
|
|
<Props = DefaultProps>(props: Props): DynamicSvelteComponent<Comp> & Props => {
|
|
return { component, ...props };
|
|
};
|