deno.land / std@0.224.0 / data_structures / _test_utils.ts

View Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.export class MyMath { multiply(a: number, b: number): number { return a * b; }}
export interface Container { id: number; values: number[];}
std

Version Info

Tagged at
4 months ago