Skip to main content
Module

std/data_structures/_test_utils.ts

The Deno Standard Library
Go to Latest
File
// 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[];}