mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
chore: lint docs of unstable paths (#5940)
This commit is contained in:
parent
fb0f40c302
commit
e564069936
@ -31,6 +31,7 @@ type DocNodeWithJsDoc<T = DocNodeBase> = T & {
|
||||
const ENTRY_POINTS = [
|
||||
"../archive/mod.ts",
|
||||
"../assert/mod.ts",
|
||||
"../assert/unstable_never.ts",
|
||||
"../async/mod.ts",
|
||||
"../bytes/mod.ts",
|
||||
"../cache/mod.ts",
|
||||
@ -53,6 +54,9 @@ const ENTRY_POINTS = [
|
||||
"../fs/mod.ts",
|
||||
"../html/mod.ts",
|
||||
"../http/mod.ts",
|
||||
"../http/unstable_header.ts",
|
||||
"../http/unstable_method.ts",
|
||||
"../http/unstable_signed_cookie.ts",
|
||||
"../ini/mod.ts",
|
||||
"../internal/mod.ts",
|
||||
"../io/mod.ts",
|
||||
@ -78,6 +82,7 @@ const ENTRY_POINTS = [
|
||||
"../toml/mod.ts",
|
||||
"../ulid/mod.ts",
|
||||
"../uuid/mod.ts",
|
||||
"../uuid/unstable_v7.ts",
|
||||
"../webgpu/mod.ts",
|
||||
"../yaml/mod.ts",
|
||||
] as const;
|
||||
|
@ -6,9 +6,6 @@
|
||||
*
|
||||
* UUID Version 7 is defined in {@link https://www.rfc-editor.org/rfc/rfc9562.html#section-5.7 | RFC 9562}.
|
||||
*
|
||||
* @experimental **UNSTABLE**: New API, yet to be vetted.
|
||||
*
|
||||
* @example
|
||||
* ```ts
|
||||
* import { generate, validate, extractTimestamp } from "@std/uuid/unstable-v7";
|
||||
* import { assert, assertEquals } from "@std/assert";
|
||||
@ -18,6 +15,8 @@
|
||||
* assertEquals(extractTimestamp("017f22e2-79b0-7cc3-98c4-dc0c0c07398f"), 1645557742000);
|
||||
* ```
|
||||
*
|
||||
* @experimental **UNSTABLE**: New API, yet to be vetted.
|
||||
*
|
||||
* @module
|
||||
*/
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user