Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. export interface XX{
  2. Campo1?: string;
  3. Campo2?: string;
  4. Campo3?: string;
  5. [key: string]: string;
  6. }
  7.  
  8. const p: XX;
  9. p[Campo1];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement