Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.73.229
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
sass /
types /
legacy /
Delete
Unzip
Name
Size
Permission
Date
Action
exception.d.ts
1.76
KB
-rw-rw-r--
2022-08-30 11:49
function.d.ts
22.07
KB
-rw-rw-r--
2022-08-30 11:49
importer.d.ts
6
KB
-rw-rw-r--
2022-08-30 11:49
options.d.ts
19.58
KB
-rw-rw-r--
2022-08-30 11:49
plugin_this.d.ts
1.97
KB
-rw-rw-r--
2022-08-30 11:49
render.d.ts
3.96
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
/** * The exception type thrown by [[renderSync]] and passed as the error to * [[render]]'s callback. * * @category Legacy * @deprecated This is only thrown by the legacy [[render]] and [[renderSync]] * APIs. Use [[compile]], [[compileString]], [[compileAsync]], and * [[compileStringAsync]] instead. */ export interface LegacyException extends Error { /** * The error message. For Dart Sass, when possible this includes a highlighted * indication of where in the source file the error occurred as well as the * Sass stack trace. */ message: string; /** * The error message. For Dart Sass, this is the same as the result of calling * [[toString]], which is itself the same as [[message]] but with the prefix * "Error:". */ formatted: string; /** * The (1-based) line number on which the error occurred, if this exception is * associated with a specific Sass file location. */ line?: number; /** * The (1-based) column number within [[line]] at which the error occurred, if * this exception is associated with a specific Sass file location. */ column?: number; /** * Analogous to the exit code for an executable. `1` for an error caused by a * Sass file, `3` for any other type of error. */ status: number; /** * If this exception was caused by an error in a Sass file, this will * represent the Sass file's location. It can be in one of three formats: * * * If the Sass file was loaded from disk, this is the path to that file. * * If the Sass file was generated by an importer, this is its canonical URL. * * If the Sass file was passed as [[LegacyStringOptions.data]] without a * corresponding [[LegacyStringOptions.file]], this is the special string * `"stdin"`. */ file?: string; }