Skip to content

Instantly share code, notes, and snippets.

@nickmccurdy
Created December 28, 2022 02:39
Show Gist options
  • Save nickmccurdy/7d0fb73a626d83d0c0d0b7057912a269 to your computer and use it in GitHub Desktop.
Save nickmccurdy/7d0fb73a626d83d0c0d0b7057912a269 to your computer and use it in GitHub Desktop.
Generic TypeScript parser type (similar to JSON)
interface Parser<T> {
parse(text: string): T
stringify(value: T): string
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment