initial update
This commit is contained in:
7
node_modules/graphql/jsutils/isObjectLike.d.ts
generated
vendored
Normal file
7
node_modules/graphql/jsutils/isObjectLike.d.ts
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
/**
|
||||
* Return true if `value` is object-like. A value is object-like if it's not
|
||||
* `null` and has a `typeof` result of "object".
|
||||
*/
|
||||
export declare function isObjectLike(value: unknown): value is {
|
||||
[key: string]: unknown;
|
||||
};
|
||||
Reference in New Issue
Block a user