Use for change all properties to optional.
import { RecursivePartial } from 'niro-health';
import { RecursivePartial } from 'niro-health'; export type Model = { name: string; age: number; session: { actives: number; }; } export type filter = RecursivePartial<Model>;
Last updated 1 year ago