Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. export interface PiyoInstance {
  2. /**
  3. * Thru an argument.
  4. * @param x argument.
  5. * @template T argument type.
  6. */
  7. instanceMethod<T>(x: T): T;
  8. }
  9.  
  10. /** 🐥 */
  11. export default interface Piyo {
  12. /** Create the instance. */
  13. new (): PiyoInstance;
  14. /**
  15. * Thru an argument.
  16. * @param x argument.
  17. * @template T argument type.
  18. */
  19. staticMethod<T>(x: T): T;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement