From b0c858830eaf0208906362d02c40dafab31ce8e1 Mon Sep 17 00:00:00 2001 From: unional Date: Mon, 23 Oct 2023 00:20:28 +0000 Subject: [PATCH] docs: update --- type-plus/ts/predicates/assignable.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/type-plus/ts/predicates/assignable.ts b/type-plus/ts/predicates/assignable.ts index 689f8008ad..4e6a5c2051 100644 --- a/type-plus/ts/predicates/assignable.ts +++ b/type-plus/ts/predicates/assignable.ts @@ -10,7 +10,7 @@ import type { $SelectionOptions } from '../type_plus/branch/$selection_options.j import type { $Unknown } from '../unknown/unknown.js' /** - * 🧰 *tool utils* + * 🎭 *predicate* * * Validate if `A` is assignable to `B`. * @@ -81,7 +81,12 @@ export namespace Assignable { /** * 🧰 *type util* * + * Validate if `A` is assignable to `B`. + * + * This is the internal logic of `Assignable`. + * It does not check against special types. * + * It is suitable for building custom types. */ export type $< A,