mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
20 lines
394 B
Markdown
20 lines
394 B
Markdown
|
---
|
||
|
id: 51e8b29a-b87a-4022-8287-36b8090fe83b
|
||
|
title: Lowercase
|
||
|
---
|
||
|
|
||
|
# Description
|
||
|
|
||
|
Transforms every string character to lowercase for [string literal
|
||
|
types](20201123101810-typescript_template_literal_string_type).
|
||
|
|
||
|
# Syntax
|
||
|
|
||
|
``` typescript
|
||
|
type UnenthusiasticGreeting<T extends string> = `${Lowercase<T>}`
|
||
|
|
||
|
type HELLO = UnenthusiasticGreeting<"HELLO">;
|
||
|
// same as
|
||
|
// type HELLO = "hello";
|
||
|
```
|