More types

This commit is contained in:
Dolan
2017-06-04 00:45:48 +01:00
parent 082710a32c
commit cdf69c51e9
25 changed files with 658 additions and 19 deletions
+6
View File
@@ -0,0 +1,6 @@
export class Strarray {
copy(src: Strarray): number;
free(): void;
strings: string;
count: number;
}