UNPKG

@realsee/dnalogel

Version:
5 lines (4 loc) 210 B
import type { LiteralUnion } from "type-fest"; export type Omit<T, K> = Pick<T, Exclude<keyof T, K>>; export type Overwrite<T, K> = Omit<T, keyof K> & K; export type LiteralString<T> = LiteralUnion<T, string>;