mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
10 lines
372 B
TypeScript
10 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;
|