0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-06 22:45:03 -05:00
denoland-deno/tests/testdata/jsr/registry/@denotest/deps/1.0.0/mod.ts
David Sherret 48daf2dc88
chore: add tests for moduleGraph2 (#23603)
Also did some renames from underscores to hyphens
2024-04-29 14:09:58 -04:00

7 lines
172 B
TypeScript

import { Other } from "jsr:@denotest/module-graph@1/other";
import version from "jsr:@denotest/no-module-graph@^0.1";
export default {
version,
other: new Other(),
};