Skip to content

Commit 8cc781b

Browse files
committed
-
1 parent 6ddc417 commit 8cc781b

16 files changed

+1486
-298
lines changed

baselines/audioworklet.generated.d.ts

Lines changed: 95 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1692,44 +1692,120 @@ declare namespace WebAssembly {
16921692
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console)
16931693
*/
16941694
interface Console {
1695-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/assert_static) */
1695+
/**
1696+
* The **`console.assert()`** static method writes an error message to the console if the assertion is false.
1697+
*
1698+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/assert_static)
1699+
*/
16961700
assert(condition?: boolean, ...data: any[]): void;
1697-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static) */
1701+
/**
1702+
* The **`console.clear()`** static method clears the console if possible.
1703+
*
1704+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static)
1705+
*/
16981706
clear(): void;
1699-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
1707+
/**
1708+
* The **`console.count()`** static method logs the number of times that this particular call to `count()` has been called.
1709+
*
1710+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static)
1711+
*/
17001712
count(label?: string): void;
1701-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static) */
1713+
/**
1714+
* The **`console.countReset()`** static method resets counter used with console/count_static.
1715+
*
1716+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static)
1717+
*/
17021718
countReset(label?: string): void;
1703-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
1719+
/**
1720+
* The **`console.debug()`** static method outputs a message to the console at the 'debug' log level.
1721+
*
1722+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static)
1723+
*/
17041724
debug(...data: any[]): void;
1705-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static) */
1725+
/**
1726+
* The **`console.dir()`** static method displays a list of the properties of the specified JavaScript object.
1727+
*
1728+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static)
1729+
*/
17061730
dir(item?: any, options?: any): void;
1707-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static) */
1731+
/**
1732+
* The **`console.dirxml()`** static method displays an interactive tree of the descendant elements of the specified XML/HTML element.
1733+
*
1734+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static)
1735+
*/
17081736
dirxml(...data: any[]): void;
1709-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static) */
1737+
/**
1738+
* The **`console.error()`** static method outputs a message to the console at the 'error' log level.
1739+
*
1740+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static)
1741+
*/
17101742
error(...data: any[]): void;
1711-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
1743+
/**
1744+
* 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.
1745+
*
1746+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static)
1747+
*/
17121748
group(...data: any[]): void;
1713-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static) */
1749+
/**
1750+
* The **`console.groupCollapsed()`** static method creates a new inline group in the console.
1751+
*
1752+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static)
1753+
*/
17141754
groupCollapsed(...data: any[]): void;
1715-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static) */
1755+
/**
1756+
* The **`console.groupEnd()`** static method exits the current inline group in the console.
1757+
*
1758+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static)
1759+
*/
17161760
groupEnd(): void;
1717-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
1761+
/**
1762+
* The **`console.info()`** static method outputs a message to the console at the 'info' log level.
1763+
*
1764+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static)
1765+
*/
17181766
info(...data: any[]): void;
1719-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/log_static) */
1767+
/**
1768+
* The **`console.log()`** static method outputs a message to the console.
1769+
*
1770+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/log_static)
1771+
*/
17201772
log(...data: any[]): void;
1721-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/table_static) */
1773+
/**
1774+
* The **`console.table()`** static method displays tabular data as a table.
1775+
*
1776+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/table_static)
1777+
*/
17221778
table(tabularData?: any, properties?: string[]): void;
1723-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
1779+
/**
1780+
* The **`console.time()`** static method starts a timer you can use to track how long an operation takes.
1781+
*
1782+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static)
1783+
*/
17241784
time(label?: string): void;
1725-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static) */
1785+
/**
1786+
* The **`console.timeEnd()`** static method stops a timer that was previously started by calling console/time_static.
1787+
*
1788+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static)
1789+
*/
17261790
timeEnd(label?: string): void;
1727-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static) */
1791+
/**
1792+
* The **`console.timeLog()`** static method logs the current value of a timer that was previously started by calling console/time_static.
1793+
*
1794+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static)
1795+
*/
17281796
timeLog(label?: string, ...data: any[]): void;
17291797
timeStamp(label?: string): void;
1730-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
1798+
/**
1799+
* The **`console.trace()`** static method outputs a stack trace to the console.
1800+
*
1801+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static)
1802+
*/
17311803
trace(...data: any[]): void;
1732-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static) */
1804+
/**
1805+
* The **`console.warn()`** static method outputs a warning message to the console at the 'warning' log level.
1806+
*
1807+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static)
1808+
*/
17331809
warn(...data: any[]): void;
17341810
}
17351811

baselines/dom.generated.d.ts

Lines changed: 115 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -37426,7 +37426,11 @@ declare var XSLTProcessor: {
3742637426

3742737427
/** The **`CSS`** interface holds useful CSS-related methods. */
3742837428
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+
*/
3743037434
var highlights: HighlightRegistry;
3743137435
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
3743237436
function Hz(value: number): CSSUnitValue;
@@ -37471,7 +37475,11 @@ declare namespace CSS {
3747137475
function dvw(value: number): CSSUnitValue;
3747237476
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
3747337477
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+
*/
3747537483
function escape(ident: string): string;
3747637484
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
3747737485
function ex(value: number): CSSUnitValue;
@@ -37513,7 +37521,11 @@ declare namespace CSS {
3751337521
function rad(value: number): CSSUnitValue;
3751437522
function rcap(value: number): CSSUnitValue;
3751537523
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+
*/
3751737529
function registerProperty(definition: PropertyDefinition): void;
3751837530
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
3751937531
function rem(value: number): CSSUnitValue;
@@ -37522,7 +37534,11 @@ declare namespace CSS {
3752237534
function rlh(value: number): CSSUnitValue;
3752337535
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
3752437536
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+
*/
3752637542
function supports(property: string, value: string): boolean;
3752737543
function supports(conditionText: string): boolean;
3752837544
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
@@ -37719,44 +37735,120 @@ declare namespace WebAssembly {
3771937735
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console)
3772037736
*/
3772137737
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+
*/
3772337743
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+
*/
3772537749
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+
*/
3772737755
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+
*/
3772937761
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+
*/
3773137767
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+
*/
3773337773
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+
*/
3773537779
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+
*/
3773737785
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+
*/
3773937791
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+
*/
3774137797
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+
*/
3774337803
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+
*/
3774537809
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+
*/
3774737815
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+
*/
3774937821
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+
*/
3775137827
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+
*/
3775337833
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+
*/
3775537839
timeLog(label?: string, ...data: any[]): void;
3775637840
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+
*/
3775837846
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+
*/
3776037852
warn(...data: any[]): void;
3776137853
}
3776237854

0 commit comments

Comments
 (0)