@@ -37426,7 +37426,11 @@ declare var XSLTProcessor: {
37426
37426
37427
37427
/** The **`CSS`** interface holds useful CSS-related methods. */
37428
37428
declare namespace CSS {
37429
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/highlights_static) */
37429
+ /**
37430
+ * The static, read-only **`highlights`** property of the CSS interface provides access to the `HighlightRegistry` used to style arbitrary text ranges using the css_custom_highlight_api.
37431
+ *
37432
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/highlights_static)
37433
+ */
37430
37434
var highlights: HighlightRegistry;
37431
37435
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
37432
37436
function Hz(value: number): CSSUnitValue;
@@ -37471,7 +37475,11 @@ declare namespace CSS {
37471
37475
function dvw(value: number): CSSUnitValue;
37472
37476
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
37473
37477
function em(value: number): CSSUnitValue;
37474
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/escape_static) */
37478
+ /**
37479
+ * The **`CSS.escape()`** static method returns a string containing the escaped string passed as parameter, mostly for use as part of a CSS selector.
37480
+ *
37481
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/escape_static)
37482
+ */
37475
37483
function escape(ident: string): string;
37476
37484
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
37477
37485
function ex(value: number): CSSUnitValue;
@@ -37513,7 +37521,11 @@ declare namespace CSS {
37513
37521
function rad(value: number): CSSUnitValue;
37514
37522
function rcap(value: number): CSSUnitValue;
37515
37523
function rch(value: number): CSSUnitValue;
37516
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/registerProperty_static) */
37524
+ /**
37525
+ * The **`CSS.registerProperty()`** static method registers custom properties, allowing for property type checking, default values, and properties that do or do not inherit their value.
37526
+ *
37527
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/registerProperty_static)
37528
+ */
37517
37529
function registerProperty(definition: PropertyDefinition): void;
37518
37530
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
37519
37531
function rem(value: number): CSSUnitValue;
@@ -37522,7 +37534,11 @@ declare namespace CSS {
37522
37534
function rlh(value: number): CSSUnitValue;
37523
37535
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
37524
37536
function s(value: number): CSSUnitValue;
37525
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/supports_static) */
37537
+ /**
37538
+ * The **`CSS.supports()`** static method returns a boolean value indicating if the browser supports a given CSS feature, or not.
37539
+ *
37540
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/supports_static)
37541
+ */
37526
37542
function supports(property: string, value: string): boolean;
37527
37543
function supports(conditionText: string): boolean;
37528
37544
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
@@ -37719,44 +37735,120 @@ declare namespace WebAssembly {
37719
37735
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console)
37720
37736
*/
37721
37737
interface Console {
37722
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/assert_static) */
37738
+ /**
37739
+ * The **`console.assert()`** static method writes an error message to the console if the assertion is false.
37740
+ *
37741
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/assert_static)
37742
+ */
37723
37743
assert(condition?: boolean, ...data: any[]): void;
37724
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static) */
37744
+ /**
37745
+ * The **`console.clear()`** static method clears the console if possible.
37746
+ *
37747
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static)
37748
+ */
37725
37749
clear(): void;
37726
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
37750
+ /**
37751
+ * The **`console.count()`** static method logs the number of times that this particular call to `count()` has been called.
37752
+ *
37753
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static)
37754
+ */
37727
37755
count(label?: string): void;
37728
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static) */
37756
+ /**
37757
+ * The **`console.countReset()`** static method resets counter used with console/count_static.
37758
+ *
37759
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static)
37760
+ */
37729
37761
countReset(label?: string): void;
37730
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
37762
+ /**
37763
+ * The **`console.debug()`** static method outputs a message to the console at the 'debug' log level.
37764
+ *
37765
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static)
37766
+ */
37731
37767
debug(...data: any[]): void;
37732
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static) */
37768
+ /**
37769
+ * The **`console.dir()`** static method displays a list of the properties of the specified JavaScript object.
37770
+ *
37771
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static)
37772
+ */
37733
37773
dir(item?: any, options?: any): void;
37734
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static) */
37774
+ /**
37775
+ * The **`console.dirxml()`** static method displays an interactive tree of the descendant elements of the specified XML/HTML element.
37776
+ *
37777
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static)
37778
+ */
37735
37779
dirxml(...data: any[]): void;
37736
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static) */
37780
+ /**
37781
+ * The **`console.error()`** static method outputs a message to the console at the 'error' log level.
37782
+ *
37783
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static)
37784
+ */
37737
37785
error(...data: any[]): void;
37738
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
37786
+ /**
37787
+ * The **`console.group()`** static method creates a new inline group in the Web console log, causing any subsequent console messages to be indented by an additional level, until console/groupEnd_static is called.
37788
+ *
37789
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static)
37790
+ */
37739
37791
group(...data: any[]): void;
37740
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static) */
37792
+ /**
37793
+ * The **`console.groupCollapsed()`** static method creates a new inline group in the console.
37794
+ *
37795
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static)
37796
+ */
37741
37797
groupCollapsed(...data: any[]): void;
37742
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static) */
37798
+ /**
37799
+ * The **`console.groupEnd()`** static method exits the current inline group in the console.
37800
+ *
37801
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static)
37802
+ */
37743
37803
groupEnd(): void;
37744
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
37804
+ /**
37805
+ * The **`console.info()`** static method outputs a message to the console at the 'info' log level.
37806
+ *
37807
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static)
37808
+ */
37745
37809
info(...data: any[]): void;
37746
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/log_static) */
37810
+ /**
37811
+ * The **`console.log()`** static method outputs a message to the console.
37812
+ *
37813
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/log_static)
37814
+ */
37747
37815
log(...data: any[]): void;
37748
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/table_static) */
37816
+ /**
37817
+ * The **`console.table()`** static method displays tabular data as a table.
37818
+ *
37819
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/table_static)
37820
+ */
37749
37821
table(tabularData?: any, properties?: string[]): void;
37750
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
37822
+ /**
37823
+ * The **`console.time()`** static method starts a timer you can use to track how long an operation takes.
37824
+ *
37825
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static)
37826
+ */
37751
37827
time(label?: string): void;
37752
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static) */
37828
+ /**
37829
+ * The **`console.timeEnd()`** static method stops a timer that was previously started by calling console/time_static.
37830
+ *
37831
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static)
37832
+ */
37753
37833
timeEnd(label?: string): void;
37754
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static) */
37834
+ /**
37835
+ * The **`console.timeLog()`** static method logs the current value of a timer that was previously started by calling console/time_static.
37836
+ *
37837
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static)
37838
+ */
37755
37839
timeLog(label?: string, ...data: any[]): void;
37756
37840
timeStamp(label?: string): void;
37757
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
37841
+ /**
37842
+ * The **`console.trace()`** static method outputs a stack trace to the console.
37843
+ *
37844
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static)
37845
+ */
37758
37846
trace(...data: any[]): void;
37759
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static) */
37847
+ /**
37848
+ * The **`console.warn()`** static method outputs a warning message to the console at the 'warning' log level.
37849
+ *
37850
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static)
37851
+ */
37760
37852
warn(...data: any[]): void;
37761
37853
}
37762
37854
0 commit comments