type-plus
Version:
Provides additional types for TypeScript.
44 lines (38 loc) • 1.39 kB
text/typescript
// By Drew Colthorp, <https://spin.atomicobject.com/2018/01/15/typescript-flexible-nominal-typing/#comment-604580>
// <https://gist.github.com/dcolthorp/aa21cf87d847ae9942106435bf47565d>
import { isType } from '../type-guard/is_type.js'
import type { Widen } from '../utils/index.js'
import { typeSym, valueSym } from './constants.js'
/**
* Create a "branded" version of a type.
* TypeScript won't allow implicit conversion to this type
*/
export type Brand<B extends string, T = never> = [T] extends [null] | [undefined] | [symbol] | [void]
? Branded<B, T>
: Branded<B, T> & T
/**
* A branded type of `B` with value of `T`.
*/
export interface Branded<B extends string, T> {
[typeSym]: B,
[valueSym]: T
}
/**
* Creates a brand creator with the specified type.
*/
export function brand<B extends string>(type: B): <T>(subject: T) => Brand<B, Widen<T>>
/**
* Creates a branded value of specified type.
*/
export function brand<B extends string, T>(type: B, subject: T): Brand<B, Widen<T>>
export function brand(typeInput: string, subject?: unknown) {
if (subject === undefined)
return function <T>(subject: T) {
return brand(typeInput, subject)
}
if (isType<{ [typeSym]: string }>(subject, s => typeof s === 'object' && s !== null)) {
// if subject is not an object, the branding will exist only in type-level.
subject[typeSym] = typeInput
}
return subject
}