GenAI_Course / node_modules /graphql /jsutils /PromiseOrValue.d.ts
sam522's picture
node
d4b85c0
raw
history blame
56 Bytes
export declare type PromiseOrValue<T> = Promise<T> | T;