LibWeb: Add WebIDL::Double type

This commit is contained in:
Jelle Raaijmakers 2024-10-08 15:49:57 +02:00 committed by Andreas Kling
parent 9515290fde
commit 6189d1ac9d
Notes: github-actions[bot] 2024-10-08 17:03:30 +00:00

View file

@ -42,4 +42,9 @@ using LongLong = i64;
// The unsigned long long type is an unsigned integer type that has values in the range [0, 18446744073709551615].
using UnsignedLongLong = u64;
// https://webidl.spec.whatwg.org/#idl-double
// The double type is a floating point numeric type that corresponds to the set of finite
// double-precision 64-bit IEEE 754 floating point numbers. [IEEE-754]
using Double = f64;
}