adminjs
Version:
Admin panel for apps written in node.js
16 lines (15 loc) • 413 B
TypeScript
import type { Theme } from '@adminjs/design-system';
import type { FC } from 'react';
import type { ReduxState } from '../src/frontend/store/store.js';
declare global {
interface Window {
REDUX_STATE: ReduxState;
THEME: Theme;
AdminJS: typeof AdminJS;
THEME_COMPONENTS: Record<string, FC>;
}
}
declare const AdminJS: {
UserComponents: Record<string, FC>;
};
export {};