Guest User

Untitled

a guest
Jul 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. interface Interface {
  2. defaultFunction(): Interface;
  3. otherDefaultFunction(): Interface;
  4. unrelatedOtherFunction(): boolean;
  5. someProperty: string;
  6. }
  7.  
  8. const functions = [
  9. defaultFunction: (arg: string) => true;
  10. otherDefaultFunction: (arg: number) => true;
  11. ]
  12.  
  13. const customFunctions = [
  14. someFunctionWithAName: (arg: boolean, arg2: string) => true;
  15. ]
  16.  
  17. someFunction(): Interface;
Add Comment
Please, Sign In to add comment