Skip to content

Instantly share code, notes, and snippets.

@wolak041
Created May 16, 2023 16:39
Show Gist options
  • Save wolak041/21193a77773eb509245794147eaa4823 to your computer and use it in GitHub Desktop.
Save wolak041/21193a77773eb509245794147eaa4823 to your computer and use it in GitHub Desktop.
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