Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cqt /
node_modules /
next-themes /
dist /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.mts
315
B
-rw-r--r--
index.d.ts
314
B
-rw-r--r--
index.js
4.12
KB
-rw-r--r--
index.mjs
3.51
KB
-rw-r--r--
types.d.mts
2.22
KB
-rw-r--r--
types.d.ts
2.22
KB
-rw-r--r--
types.js
384
B
-rw-r--r--
types.mjs
0
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : types.d.mts
import * as React from 'react'; interface ValueObject { [themeName: string]: string; } interface UseThemeProps { /** List of all available theme names */ themes: string[]; /** Forced theme name for the current page */ forcedTheme?: string | undefined; /** Update the theme */ setTheme: React.Dispatch<React.SetStateAction<string>>; /** Active theme name */ theme?: string | undefined; /** If `enableSystem` is true and the active theme is "system", this returns whether the system preference resolved to "dark" or "light". Otherwise, identical to `theme` */ resolvedTheme?: string | undefined; /** If enableSystem is true, returns the System theme preference ("dark" or "light"), regardless what the active theme is */ systemTheme?: 'dark' | 'light' | undefined; } interface ThemeProviderProps { /** List of all available theme names */ themes?: string[] | undefined; /** Forced theme name for the current page */ forcedTheme?: string | undefined; /** Whether to switch between dark and light themes based on prefers-color-scheme */ enableSystem?: boolean | undefined; /** Disable all CSS transitions when switching themes */ disableTransitionOnChange?: boolean | undefined; /** Whether to indicate to browsers which color scheme is used (dark or light) for built-in UI like inputs and buttons */ enableColorScheme?: boolean | undefined; /** Key used to store theme setting in localStorage */ storageKey?: string | undefined; /** Default theme name (for v0.0.12 and lower the default was light). If `enableSystem` is false, the default theme is light */ defaultTheme?: string | undefined; /** HTML attribute modified based on the active theme. Accepts `class` and `data-*` (meaning any data attribute, `data-mode`, `data-color`, etc.) */ attribute?: string | 'class' | undefined; /** Mapping of theme name to HTML attribute value. Object where key is the theme name and value is the attribute value */ value?: ValueObject | undefined; /** Nonce string to pass to the inline script for CSP headers */ nonce?: string | undefined; /** React children */ children: React.ReactNode; } export type { ThemeProviderProps, UseThemeProps };
Close