Skip to content

Instantly share code, notes, and snippets.

@xiaoxiangmoe
Last active July 13, 2019 04:41
Show Gist options
  • Save xiaoxiangmoe/bf5294336f15d0d040db20b178f5a2c8 to your computer and use it in GitHub Desktop.
Save xiaoxiangmoe/bf5294336f15d0d040db20b178f5a2c8 to your computer and use it in GitHub Desktop.
genOpaqueType
const genOpaqueType = x => "namespace _opaque{"+Array(x).fill().map((v,x)=>`declare const opaque_key_${x}:unique symbol;export interface t${x}{[opaque_key_${x}]:0}`).join(';')+"} /* prettier-ignore */ // tslint:disable-line"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment