HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-26-0-120 6.17.0-1009-aws #9~24.04.2-Ubuntu SMP Fri Mar 6 23:50:29 UTC 2026 x86_64
User: ubuntu (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/orbidirectory.com/node_modules/sass/types/logger/source_location.d.ts
/**
 * A specific location within a source file.
 *
 * This is always associated with a {@link SourceSpan} which indicates *which*
 * file it refers to.
 *
 * @category Logger
 */
export interface SourceLocation {
  /**
   * The 0-based index of this location within its source file, in terms of
   * UTF-16 code units.
   */
  offset: number;

  /** The 0-based line number of this location. */
  line: number;

  /** The 0-based column number of this location. */
  column: number;
}