From 35ee9194c8de6a5177b5ff2b05c627d2dab8d7bb Mon Sep 17 00:00:00 2001 From: Jorge Bucaran Date: Fri, 28 Jun 2019 03:41:48 +0900 Subject: [PATCH] Remove confusing description --- classcat.d.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/classcat.d.ts b/classcat.d.ts index efb0676..65c1c88 100644 --- a/classcat.d.ts +++ b/classcat.d.ts @@ -8,9 +8,4 @@ export interface ClassArray extends Array {} export type Class = string | number | ClassObject | ClassArray -/** - * A number, string, object or array. Objects consist of className/value pairs. Arrays are recursively reduced, therefore elements can be of any type aforementioned. [Truthy](https://developer.mozilla.org/en-US/docs/Glossary/Truthy) values are added to the output, [falsy](https://developer.mozilla.org/en-US/docs/Glossary/Falsy) values are ignored. - * - * @param names - */ export default function(names: Class): string