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.1
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 /
quiz1 /
node_modules /
type-fest /
source /
[ HOME SHELL ]
Name
Size
Permission
Action
async-return-type.d.ts
715
B
-rw-rw-rw-
asyncify.d.ts
1.19
KB
-rw-rw-rw-
basic.d.ts
1.62
KB
-rw-rw-rw-
conditional-except.d.ts
1012
B
-rw-rw-rw-
conditional-keys.d.ts
1.17
KB
-rw-rw-rw-
conditional-pick.d.ts
933
B
-rw-rw-rw-
entries.d.ts
2.42
KB
-rw-rw-rw-
entry.d.ts
2.7
KB
-rw-rw-rw-
except.d.ts
886
B
-rw-rw-rw-
fixed-length-array.d.ts
1.45
KB
-rw-rw-rw-
iterable-element.d.ts
1.25
KB
-rw-rw-rw-
literal-union.d.ts
1.11
KB
-rw-rw-rw-
merge-exclusive.d.ts
1.31
KB
-rw-rw-rw-
merge.d.ts
531
B
-rw-rw-rw-
mutable.d.ts
1.76
KB
-rw-rw-rw-
opaque.d.ts
2.61
KB
-rw-rw-rw-
package-json.d.ts
13.74
KB
-rw-rw-rw-
partial-deep.d.ts
2.26
KB
-rw-rw-rw-
promisable.d.ts
775
B
-rw-rw-rw-
promise-value.d.ts
1.03
KB
-rw-rw-rw-
readonly-deep.d.ts
1.79
KB
-rw-rw-rw-
require-at-least-one.d.ts
848
B
-rw-rw-rw-
require-exactly-one.d.ts
1.23
KB
-rw-rw-rw-
set-optional.d.ts
911
B
-rw-rw-rw-
set-required.d.ts
914
B
-rw-rw-rw-
set-return-type.d.ts
1.66
KB
-rw-rw-rw-
simplify.d.ts
133
B
-rw-rw-rw-
stringified.d.ts
416
B
-rw-rw-rw-
tsconfig-json.d.ts
16.44
KB
-rw-rw-rw-
typed-array.d.ts
363
B
-rw-rw-rw-
union-to-intersection.d.ts
1.92
KB
-rw-rw-rw-
utilities.d.ts
322
B
-rw-rw-rw-
value-of.d.ts
829
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : set-return-type.d.ts
type IsAny<T> = 0 extends (1 & T) ? true : false; // https://stackoverflow.com/a/49928360/3406963 type IsNever<T> = [T] extends [never] ? true : false; type IsUnknown<T> = IsNever<T> extends false ? T extends unknown ? unknown extends T ? IsAny<T> extends false ? true : false : false : false : false; /** Create a function type with a return type of your choice and the same parameters as the given function type. Use-case: You want to define a wrapped function that returns something different while receiving the same parameters. For example, you might want to wrap a function that can throw an error into one that will return `undefined` instead. @example ``` import {SetReturnType} from 'type-fest'; type MyFunctionThatCanThrow = (foo: SomeType, bar: unknown) => SomeOtherType; type MyWrappedFunction = SetReturnType<MyFunctionThatCanThrow, SomeOtherType | undefined>; //=> type MyWrappedFunction = (foo: SomeType, bar: unknown) => SomeOtherType | undefined; ``` */ export type SetReturnType<Fn extends (...args: any[]) => any, TypeToReturn> = // Just using `Parameters<Fn>` isn't ideal because it doesn't handle the `this` fake parameter. Fn extends (this: infer ThisArg, ...args: infer Arguments) => any ? ( // If a function did not specify the `this` fake parameter, it will be inferred to `unknown`. // We want to detect this situation just to display a friendlier type upon hovering on an IntelliSense-powered IDE. IsUnknown<ThisArg> extends true ? (...args: Arguments) => TypeToReturn : (this: ThisArg, ...args: Arguments) => TypeToReturn ) : ( // This part should be unreachable, but we make it meaningful just in case⦠(...args: Parameters<Fn>) => TypeToReturn );
Close