Created
May 16, 2023 16:39
-
-
Save wolak041/21193a77773eb509245794147eaa4823 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Url = `https://${string}.${string}`; | |
const url1: Url = 'https://google.com'; | |
// Error: Type 'test' is not assignable to type 'https://${string}.${string}'. | |
const url2: Url = 'test'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment