/** * Tests all passed arguments (or the contents of passed collections) for truthiness. * * @param {...any} args [description] * @returns {boolean} Returns true if all provided values are truthy */ export default function all(...args: any[]): boolean;