mirror of
https://github.com/denoland/deno.git
synced 2024-11-29 16:30:56 -05:00
279030f2b8
postcss was importing `./index.js` from `./index.d.mts` where there also existed a `./index.d.ts`. Closes #19575
9 lines
372 B
TypeScript
9 lines
372 B
TypeScript
import { Value as Dts1 } from "npm:@denotest/file-dts-dmts-dcts/js";
|
|
import { Value as Mts1 } from "npm:@denotest/file-dts-dmts-dcts";
|
|
import { Value as Mts2 } from "npm:@denotest/file-dts-dmts-dcts/mjs";
|
|
import { Value as Cts1 } from "npm:@denotest/file-dts-dmts-dcts/cjs";
|
|
|
|
const value1: Dts1 = 5;
|
|
const value2: Mts1 = 5;
|
|
const value3: Mts2 = 5;
|
|
const value4: Cts1 = 5;
|