Mission Control Dashboard - Initial implementation

This commit is contained in:
Daniel Arroyo
2026-03-27 18:36:05 +00:00
parent 257cea2c7d
commit a8fb4d4555
12516 changed files with 2307128 additions and 2 deletions

40
node_modules/eslint-plugin-react-refresh/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,40 @@
type Rules = { "only-export-components": any };
export type OnlyExportComponentsOptions = {
extraHOCs?: string[];
allowExportNames?: string[];
allowConstantExport?: boolean;
checkJS?: boolean;
};
type Config = {
name: string;
plugins: { "react-refresh": { rules: Rules } };
rules: Rules;
};
type ConfigFn = (options?: OnlyExportComponentsOptions) => {
name: string;
plugins: { "react-refresh": { rules: Rules } };
rules: Rules;
};
export const reactRefresh: {
plugin: {
rules: Rules;
};
configs: {
recommended: ConfigFn;
vite: ConfigFn;
next: ConfigFn;
};
};
declare const _default: {
rules: Rules;
configs: {
recommended: Config;
vite: Config;
next: Config;
};
};
export default _default;