Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
sass /
types /
legacy /
Delete
Unzip
Name
Size
Permission
Date
Action
exception.d.ts
1.82
KB
-rw-r--r--
2026-06-24 16:16
function.d.ts
22.44
KB
-rw-r--r--
2026-06-24 16:16
importer.d.ts
6.21
KB
-rw-r--r--
2026-06-24 16:16
options.d.ts
21.58
KB
-rw-r--r--
2026-06-24 16:16
plugin_this.d.ts
2.06
KB
-rw-r--r--
2026-06-24 16:16
render.d.ts
4.34
KB
-rw-r--r--
2026-06-24 16:16
Save
Rename
/** * The exception type thrown by {@link renderSync} and passed as the error to * {@link render}'s callback. * * @category Legacy * @deprecated This is only thrown by the legacy {@link render} and {@link * renderSync} APIs. Use {@link compile}, {@link compileString}, {@link * compileAsync}, and {@link 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 * {@link toString}, which is itself the same as {@link 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 {@link 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 {@link LegacyStringOptions.data} without a * corresponding {@link LegacyStringOptions.file}, this is the special * string `"stdin"`. */ file?: string; }