mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
a63a439c11
* refactor(internal): cleanup * revert * work * fix * fix * fix * tweaks * fix
9 lines
230 B
TypeScript
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>>;
|
|
}
|