source: frontend/node_modules/@jridgewell/gen-mapping/src/sourcemap-segment.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago

Fix frontend appearance

  • Property mode set to 100644
File size: 480 bytes
Line 
1type GeneratedColumn = number;
2type SourcesIndex = number;
3type SourceLine = number;
4type SourceColumn = number;
5type NamesIndex = number;
6
7export type SourceMapSegment =
8 | [GeneratedColumn]
9 | [GeneratedColumn, SourcesIndex, SourceLine, SourceColumn]
10 | [GeneratedColumn, SourcesIndex, SourceLine, SourceColumn, NamesIndex];
11
12export const COLUMN = 0;
13export const SOURCES_INDEX = 1;
14export const SOURCE_LINE = 2;
15export const SOURCE_COLUMN = 3;
16export const NAMES_INDEX = 4;
Note: See TracBrowser for help on using the repository browser.