Advertisement
Guest User

Untitled

a guest
Nov 1st, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. interface User {
  2. username: string;
  3. password: string;
  4. confirmPassword?: string; // this is an optional property
  5. }
  6.  
  7. let user:User = {
  8. username: 'phil',
  9. password: 'supersecret'
  10. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement