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 /
logger /
Delete
Unzip
Name
Size
Permission
Date
Action
index.d.ts
2.96
KB
-rw-r--r--
2026-06-24 16:16
source_location.d.ts
486
B
-rw-r--r--
2026-06-24 16:16
source_span.d.ts
837
B
-rw-r--r--
2026-06-24 16:16
Save
Rename
import {SourceLocation} from './source_location'; /** * A span of text within a source file. * * @category Logger */ export interface SourceSpan { /** The beginning of this span, inclusive. */ start: SourceLocation; /** * The end of this span, exclusive. * * If {@link start} and {@link end} refer to the same location, the span has * zero length and refers to the point immediately after {@link start} and * before the next character. */ end: SourceLocation; /** The canonical URL of the file this span refers to. */ url?: URL; /** The text covered by the span. */ text: string; /** * Text surrounding the span. * * If this is set, it must include only whole lines, and it must include at * least all line(s) which are partially covered by this span. */ context?: string; }