/** * If the argument is an array returns it as is. Otherwise puts it in an array * (`[arg]`) and returns the result * @param arg The element to test and possibly convert to array * @category Utility */ export declare function makeArray(arg: any): T[];