Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

IsFlatObject

type IsFlatObject<T extends object> = Extract<Exclude<T[keyof T], NestedValue | Date | FileList>, any[] | object> extends never ? true : false;

§Type Parameters

§
T extends object
[src]

§Type

§
Extract<Exclude<T[keyof T], NestedValue | Date | FileList>, any[] | object> extends never ? true : false
[src]