module Console::Output::Default

def self.new(output, **options)

def self.new(output, **options)
	output ||= $stderr
	
	if output.tty?
		output = Terminal.new(output, **options)
	else
		output = Serialized.new(output, **options)
	end
	
	return output
end