File: declarationEmitPathMappingMonorepo2.symbols

package info (click to toggle)
node-typescript 4.9.5%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 533,908 kB
  • sloc: javascript: 2,018,330; makefile: 7; sh: 1
file content (58 lines) | stat: -rw-r--r-- 2,433 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
=== tests/cases/compiler/packages/core/src/index.d.ts ===
export * from "./utils";
export { default as SvgIcon } from "./SvgIcon";
>default : Symbol(default, Decl(SvgIcon.d.ts, 7, 37))
>SvgIcon : Symbol(SvgIcon, Decl(index.d.ts, 1, 8))

=== tests/cases/compiler/packages/core/src/SvgIcon.d.ts ===
import { StyledComponentProps } from "@ts-bug/styles";
>StyledComponentProps : Symbol(StyledComponentProps, Decl(SvgIcon.d.ts, 0, 8))

export interface SvgIconProps extends StyledComponentProps<"root"> {
>SvgIconProps : Symbol(SvgIconProps, Decl(SvgIcon.d.ts, 0, 54))
>StyledComponentProps : Symbol(StyledComponentProps, Decl(SvgIcon.d.ts, 0, 8))

    children?: string[];
>children : Symbol(SvgIconProps.children, Decl(SvgIcon.d.ts, 1, 68))
}
export interface SomeInterface {
>SomeInterface : Symbol(SomeInterface, Decl(SvgIcon.d.ts, 3, 1))

    myProp: string;
>myProp : Symbol(SomeInterface.myProp, Decl(SvgIcon.d.ts, 4, 32))
}
declare const SvgIcon: SomeInterface;
>SvgIcon : Symbol(SvgIcon, Decl(SvgIcon.d.ts, 7, 13))
>SomeInterface : Symbol(SomeInterface, Decl(SvgIcon.d.ts, 3, 1))

export default SvgIcon;
>SvgIcon : Symbol(SvgIcon, Decl(SvgIcon.d.ts, 7, 13))

=== tests/cases/compiler/packages/core/src/utils.d.ts ===
import SvgIcon from "./SvgIcon";
>SvgIcon : Symbol(SvgIcon, Decl(utils.d.ts, 0, 6))

export function createSvgIcon(path: string, displayName: string): typeof SvgIcon;
>createSvgIcon : Symbol(createSvgIcon, Decl(utils.d.ts, 0, 32))
>path : Symbol(path, Decl(utils.d.ts, 1, 30))
>displayName : Symbol(displayName, Decl(utils.d.ts, 1, 43))
>SvgIcon : Symbol(SvgIcon, Decl(utils.d.ts, 0, 6))

=== tests/cases/compiler/packages/styles/src/index.d.ts ===
export interface StyledComponentProps<ClassKey extends string> {
>StyledComponentProps : Symbol(StyledComponentProps, Decl(index.d.ts, 0, 0))
>ClassKey : Symbol(ClassKey, Decl(index.d.ts, 0, 38))

    classes?: Record<ClassKey, string>;
>classes : Symbol(StyledComponentProps.classes, Decl(index.d.ts, 0, 64))
>Record : Symbol(Record, Decl(lib.es5.d.ts, --, --))
>ClassKey : Symbol(ClassKey, Decl(index.d.ts, 0, 38))
}

=== tests/cases/compiler/packages/lab/src/index.ts ===
import { createSvgIcon } from "@ts-bug/core/utils";
>createSvgIcon : Symbol(createSvgIcon, Decl(index.ts, 0, 8))

export default createSvgIcon("Hello", "ArrowLeft");
>createSvgIcon : Symbol(createSvgIcon, Decl(index.ts, 0, 8))