6 lines
147 B
TypeScript
6 lines
147 B
TypeScript
/**
|
|
* Checks if the given value is an array.
|
|
* @param item - The item to test
|
|
*/
|
|
export declare const isSingleItem: (item: unknown) => boolean;
|