uikit/dist/remote-ui.d.ts
Mohamadzadeh fa06461e4b
All checks were successful
Build and Deploy Next.js + Nginx Docker Image / build-and-deploy (push) Successful in 50s
Build and Deploy Next.js + Nginx Docker Image / deploy (push) Successful in 7s
refactor remote ui
2026-07-13 13:01:12 +03:30

24 lines
595 B
TypeScript

import type { ComponentType, ReactNode } from "react";
export type UikitRemoteDepsOptions = {
React?: unknown;
createRoot?: unknown;
ChakraProvider?: unknown;
Badge?: unknown;
theme?: unknown;
chakraProviderProps?: Record<string, unknown>;
remoteUrl?: string;
};
export declare function setupUikitRemoteDeps(options?: UikitRemoteDepsOptions): void;
export type GBadgeProps = {
children?: ReactNode;
remoteUrl?: string;
theme?: unknown;
chakraProviderProps?: Record<string, unknown>;
[key: string]: unknown;
};
export declare const GBadge: ComponentType<GBadgeProps>;