customTypings.d.ts 600 B

1234567891011121314151617
  1. /**
  2. * This file contains some types to make our
  3. * lifes easier when copy and pasting Java code.
  4. * With it we can keep int, float, etc., references
  5. * in code to keep as close as possible as the Java version
  6. * but without the need to sacrifice ourselves with boring
  7. * and annoying things.
  8. */
  9. export declare type byte = number;
  10. export declare type short = number;
  11. export declare type int = number;
  12. export declare type float = number;
  13. export declare type char = number;
  14. export declare type List<T> = Array<T>;
  15. export declare type Collection<T> = Array<T>;
  16. export declare type Deque<T> = Array<T>;