Skip to main content
Module

x/live/deps.ts>Diff

Open-Source web editor based on Preact, Tailwind and TypeScript. The other side of code.
Very Popular
Go to Latest
type alias Diff
import { type Diff } from "https://deno.land/x/live@1.60.12/deps.ts";

Diff

Examples

type Props = { name: string; age: number; visible: boolean }; type DefaultProps = { age: number };

// Expect: { name: string; visible: boolean; } type DiffProps = Diff<Props, DefaultProps>;

Type Parameters

T extends object
U extends object
definition: Pick<T, SetDifference<keyof T, keyof U>>