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

isListType

function isListType(type: GraphQLInputType): type is GraphQLList<GraphQLInputType>;
function isListType(type: GraphQLOutputType): type is GraphQLList<GraphQLOutputType>;
function isListType(type: unknown): type is GraphQLList<GraphQLType>;
§
isListType(type: unknown): type is GraphQLList<GraphQLType>
[src]

§Parameters

§
type: unknown
[src]

§Return Type