fbredius/storybook

View on GitHub
lib/source-loader/src/types.ts

Summary

Maintainability
A
30 mins
Test Coverage
export interface SourceLoc {
  line: number;
  col: number;
}

export interface SourceBlock {
  startBody: SourceLoc;
  endBody: SourceLoc;
  startLoc: SourceLoc;
  endLoc: SourceLoc;
}

export interface LocationsMap {
  [key: string]: SourceBlock;
}