Skip to content

SourceLocation type

Home > @rimitive/core > SourceLocation

Source location info with both display name and full path for editor jumping.

Signature:

export type SourceLocation = {
display: string;
filePath: string;
line: number;
column?: number;
};