sprof 0.0.243 → 0.0.244

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,12 +4,13 @@ import { default as Human } from './Human';
4
4
  import { default as Phone } from './Phone';
5
5
  import { default as PostAddress } from './PostAddress';
6
6
  import { default as Website } from './Website';
7
+ import { default as UserAccount } from './UserAccount';
7
8
  export default abstract class C {
8
9
  static Phone: typeof Phone;
9
10
  static FileInfo: typeof FileInfo;
10
- static PostAddress: typeof PostAddress;
11
11
  static Website: typeof Website;
12
12
  static Email: typeof Email;
13
13
  static Human: typeof Human;
14
- static Account: any;
14
+ static PostAddress: typeof PostAddress;
15
+ static UserAccount: typeof UserAccount;
15
16
  }