Skip to main content
Module

x/troodon/interfaces.ts

🦖 Troodon is a Library for Deno to Handle Algorithms
Latest
File
/*! *****************************************************************************Copyright (c) the Trodoon authors. All rights reserved. MIT License.***************************************************************************** */
export interface IResult { error: boolean; length: number; result: Array<number>;}