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 value of `this` in the context of a {@link LegacyImporter} or {@link * LegacyFunction} callback. * * @category Legacy * @deprecated This is only used by the legacy {@link render} and {@link * renderSync} APIs. Use {@link compile}, {@link compileString}, {@link * compileAsync}, and {@link compileStringAsync} instead. */ export interface LegacyPluginThis { /** * A partial representation of the options passed to {@link render} or {@link * renderSync}. */ options: { /** The same {@link LegacyPluginThis} instance that contains this object. */ context: LegacyPluginThis; /** * The value passed to {@link LegacyFileOptions.file} or {@link * LegacyStringOptions.file}. */ file?: string; /** The value passed to {@link LegacyStringOptions.data}. */ data?: string; /** * The value passed to {@link LegacySharedOptions.includePaths} separated by * `";"` on Windows or `":"` on other operating systems. This always * includes the current working directory as the first entry. */ includePaths: string; /** Always the number 10. */ precision: 10; /** Always the number 1. */ style: 1; /** 1 if {@link LegacySharedOptions.indentType} was `"tab"`, 0 otherwise. */ indentType: 1 | 0; /** * The value passed to {@link LegacySharedOptions.indentWidth}, or `2` * otherwise. */ indentWidth: number; /** * The value passed to {@link LegacySharedOptions.linefeed}, or `"\n"` * otherwise. */ linefeed: '\r' | '\r\n' | '\n' | '\n\r'; /** A partially-constructed {@link LegacyResult} object. */ result: { /** Partial information about the compilation in progress. */ stats: { /** * The number of milliseconds between 1 January 1970 at 00:00:00 UTC and * the time at which Sass compilation began. */ start: number; /** * {@link LegacyFileOptions.file} if it was passed, otherwise the string * `"data"`. */ entry: string; }; }; }; }