File: declarationEmitWithInvalidPackageJsonTypings.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 (36 lines) | stat: -rw-r--r-- 1,208 bytes parent folder | download | duplicates (4)
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
=== /p1/node_modules/csv-parse/lib/index.d.ts ===
export function bar(): number;
>bar : Symbol(bar, Decl(index.d.ts, 0, 0))

=== /p1/index.ts ===
export interface MutableRefObject<T> {
>MutableRefObject : Symbol(MutableRefObject, Decl(index.ts, 0, 0))
>T : Symbol(T, Decl(index.ts, 0, 34))

    current: T;
>current : Symbol(MutableRefObject.current, Decl(index.ts, 0, 38))
>T : Symbol(T, Decl(index.ts, 0, 34))
}
export function useRef<T>(current: T): MutableRefObject<T> {
>useRef : Symbol(useRef, Decl(index.ts, 2, 1))
>T : Symbol(T, Decl(index.ts, 3, 23))
>current : Symbol(current, Decl(index.ts, 3, 26))
>T : Symbol(T, Decl(index.ts, 3, 23))
>MutableRefObject : Symbol(MutableRefObject, Decl(index.ts, 0, 0))
>T : Symbol(T, Decl(index.ts, 3, 23))

    return { current };
>current : Symbol(current, Decl(index.ts, 4, 12))
}
export const useCsvParser = () => {
>useCsvParser : Symbol(useCsvParser, Decl(index.ts, 6, 12))

    const parserRef = useRef<typeof import("csv-parse")>(null);
>parserRef : Symbol(parserRef, Decl(index.ts, 7, 9))
>useRef : Symbol(useRef, Decl(index.ts, 2, 1))

    return parserRef;
>parserRef : Symbol(parserRef, Decl(index.ts, 7, 9))

};