diff options
Diffstat (limited to 'tests/specs/publish/prefer_fast_check_graph/mod.ts')
-rw-r--r-- | tests/specs/publish/prefer_fast_check_graph/mod.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/specs/publish/prefer_fast_check_graph/mod.ts b/tests/specs/publish/prefer_fast_check_graph/mod.ts new file mode 100644 index 000000000..195730f3e --- /dev/null +++ b/tests/specs/publish/prefer_fast_check_graph/mod.ts @@ -0,0 +1,5 @@ +export * from "./subtract.ts"; + +export function add(a: number, b: number): number { + return a + b; +} |