UNPKG

@atlaskit/editor-common

Version:

A package that contains common classes and components for editor and renderer

3 lines (2 loc) 98 B
export type Omit<T, K> = Pick<T, Exclude<keyof T, K>>; export type Diff<T, K> = Omit<T, keyof K>;