Skip to content

Instantly share code, notes, and snippets.

@ktutnik
Created May 16, 2019 05:08
Show Gist options
  • Select an option

  • Save ktutnik/c5557b42e359a62759f142b1584fc93f to your computer and use it in GitHub Desktop.

Select an option

Save ktutnik/c5557b42e359a62759f142b1584fc93f to your computer and use it in GitHub Desktop.
export class User {
constructor(
public name:string,
public birthDate:Date,
public role: "User" | "Admin"
){}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment