Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
13 lines
568 B
Plaintext
13 lines
568 B
Plaintext
type GeneratedColumn = number;
|
|
type SourcesIndex = number;
|
|
type SourceLine = number;
|
|
type SourceColumn = number;
|
|
type NamesIndex = number;
|
|
export type SourceMapSegment = [GeneratedColumn] | [GeneratedColumn, SourcesIndex, SourceLine, SourceColumn] | [GeneratedColumn, SourcesIndex, SourceLine, SourceColumn, NamesIndex];
|
|
export declare const COLUMN = 0;
|
|
export declare const SOURCES_INDEX = 1;
|
|
export declare const SOURCE_LINE = 2;
|
|
export declare const SOURCE_COLUMN = 3;
|
|
export declare const NAMES_INDEX = 4;
|
|
export {};
|
|
//# sourceMappingURL=sourcemap-segment.d.ts.map |