From cce16ed10894acddf3b9d6abc02be8750f3a5cff Mon Sep 17 00:00:00 2001 From: Marya <111139605+MaryaBelanger@users.noreply.github.com> Date: Tue, 30 Jan 2024 22:35:52 +0000 Subject: [PATCH] Drop `dart:html` from readme Closes https://github.com/dart-lang/sdk/pull/54775 GitOrigin-RevId: aeef490725f4bc0b627eaaa980920b8b9dfb5d26 Change-Id: I52c2c64826be2304006e1c27f55abf9a402ca5b5 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/349402 Reviewed-by: Kevin Moore Reviewed-by: Devon Carew Commit-Queue: Devon Carew --- sdk/api_readme.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/sdk/api_readme.md b/sdk/api_readme.md index 64966a63775b..f95e42066356 100644 --- a/sdk/api_readme.md +++ b/sdk/api_readme.md @@ -6,8 +6,17 @@ Welcome to the Dart API reference documentation, covering the * [dart:core](dart-core/dart-core-library.html): Core functionality such as strings, numbers, collections, errors, dates, and URIs. * [dart:io](dart-io/dart-io-library.html): I/O for non-web apps. - * [dart:html](dart-html/dart-html-library.html): DOM manipulation for web apps - (available only to web apps). + * [dart:async](dart-async/dart-async-library.html): Functionality for + asynchronous programming with Futures, Streams, and Zones. + +You'll also find reference documentation covering Dart's various interop options, +such as: + + * [dart:js_interop](dart-js_interop/dart-js_interop-library.html): Library including + a sound type hierarchy and helper functions for interoping with JavaScript. + * [package:web](https://pub.dev/documentation/web): DOM manipulation for web apps. + * [dart:ffi](dart-ffi/dart-ffi-library.html): Foreign funtion interfaces for + interoping with the C language. The core libraries - except for `dart:core` - must be imported before they're available for use: