export type Guid = string; export class Defaults { static String = ""; static Guid = "00000000-0000-0000-0000-000000000000"; static Number = 0; static Date = new Date(); static Boolean = false; static Object = {}; static Array = []; static Null = null; static Undefined = undefined; static Dictionary = {}; }