import { type Diff } from "https://deno.land/x/live@1.45.1/deps.ts";
Diff
Examples
type Props = { name: string; age: number; visible: boolean };
type DefaultProps = { age: number };
type Props = { name: string; age: number; visible: boolean }; type DefaultProps = { age: number };
// Expect: { name: string; visible: boolean; } type DiffProps = Diff<Props, DefaultProps>;