mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
13 lines
240 B
TypeScript
13 lines
240 B
TypeScript
// @noImplicitReferences: true
|
|
// @traceResolution: true
|
|
// @types: jquery
|
|
// @typeRoots: /a/types
|
|
// @currentDirectory: /a
|
|
|
|
// @filename: /a/types/jquery/index.d.ts
|
|
declare var $: { foo(): void };
|
|
|
|
|
|
// @filename: /a/b/consumer.ts
|
|
$.foo();
|