std/internal/_types.ts
Asher Gomez a63a439c11
refactor(internal): cleanup and restructure (#4698)
* refactor(internal): cleanup

* revert

* work

* fix

* fix

* fix

* tweaks

* fix
2024-05-09 15:14:09 +09:00

9 lines
230 B
TypeScript

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
export type DiffType = "removed" | "common" | "added";
export interface DiffResult<T> {
type: DiffType;
value: T;
details?: Array<DiffResult<T>>;
}