Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/yano3nora_tsutils/main.ts>unionof

TypeScript Utilities as a npm dual package by Deno.
Go to Latest
variable unionof
import { unionof } from "https://deno.land/x/yano3nora_tsutils@v0.17.0/main.ts";

unionof - union type の型照合しつつ string 返すやつ

Examples

unionof<'hoge'|'fuga'>('hoge') // 'hoge'

unionof<'hoge'|'fuga'>('notExistsLiteral') // compile error

type

<T>(name: Extract<T, string>) => string