📝Recursive Partial
Use for change all properties to optional.
Import
import { RecursivePartial } from 'niro-health';Method of Use
import { RecursivePartial } from 'niro-health';
export type Model = {
    name: string;
    age: number;
    session: {
        actives: number;
    };
}
export type filter = RecursivePartial<Model>;Last updated