This interface represents a position in a text file.
interface ITextPosition {
// Properties
${line}: number;
${position}: number;
}
// This interface is not available in managed environment
// This interface is not available in native environment
line: number;
// This property is not available in managed environment
// This property is not available in native environment
Line number. Line counting starts from 1.
position: number;
// This property is not available in managed environment
// This property is not available in native environment
Position of a character in a line. Position counting starts from zero.