GuidePluginsTestingAPI
Seyfert LogoSeyfert
API

MakeDeepPartial

API/Type Aliases/MakeDeepPartial
seyfert/lib/common/types/util.d.ts

Signature

export type MakeDeepPartial<T, K extends keyof T> = Omit<T, K> & {    [P in K]?: DeepPartial<T[P]>;};

Members

This export does not declare public properties or methods in the generated declaration file.