Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LUResult

import type { LUResult } from "https://git.sr.ht/~ruivieira/deno-experiments/blob/master/mentat/linalg/core.ts";
interface LUResult {
L: Matrix;
P: Matrix;
U: Matrix;
}