GuidePluginsTestingAPI
Seyfert LogoSeyfert
API

DeepPartial

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

Signature

export type DeepPartial<T> = {    [K in keyof T]?: T[K] extends (...args: any[]) => any ? T[K] : T[K] extends Record<any, any> ? DeepPartial<T[K]> : T[K] extends (infer I)[] ? DeepPartial<I>[] : Partial<T[K]>;};

Members

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