import { ListBlockChildrenResponse } from "@notionhq/client/build/src/api-endpoints"; type TypeWithGeneric = T[]; type ExtractGeneric = Type extends TypeWithGeneric ? X : never; export type NotionAPIBlock = Extract< ExtractGeneric, { type: T } >;