1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-14 19:37:59 -05:00
denoland-deno/tests/testdata/jsr/registry/@denotest/module-graph/1.4.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

5 lines
82 B
TypeScript

import { Other } from "./other.ts";
export class Test {
other = new Other();
}