Interface ComponentPath

interface ComponentPath {
    navigation: "." | "#" | "~";
    path: string;
}

Properties

Properties

navigation: "." | "#" | "~"

How to resolve the path

  • . - Navigate via exports of symbol
  • # - Navigate via members of symbol
  • ~ - Navigate via locals of symbol
path: string