Add Function.d.ts

This commit is contained in:
László Monda
2016-04-09 14:03:02 +02:00
parent 8a2fd58c00
commit ba64cc6da6
3 changed files with 4 additions and 4 deletions

3
config-serializer/Function.d.ts vendored Normal file
View File

@@ -0,0 +1,3 @@
interface Function {
name: string;
}

View File

@@ -1,7 +1,3 @@
interface Function {
name: string;
}
abstract class Serializable<T> {
private static depth = 0;

View File

@@ -1,3 +1,4 @@
/// <reference path="Function.d.ts" />
/// <reference path="assert.ts" />
/// <reference path="Serializable.ts" />
/// <reference path="ClassArray.ts" />