refractor(contacts): export ContactError

closes #731
This commit is contained in:
Ibby 2016-10-27 08:11:45 -04:00
parent 634843e1b2
commit 685ac5c7a0

View File

@ -80,7 +80,7 @@ export class Contact implements IContactProperties {
/** /**
* @private * @private
*/ */
interface IContactError { export interface IContactError {
/** Error code */ /** Error code */
code: number; code: number;
/** Error message */ /** Error message */
@ -90,7 +90,7 @@ interface IContactError {
/** /**
* @private * @private
*/ */
declare var ContactError: { export declare var ContactError: {
new (code: number): IContactError; new (code: number): IContactError;
UNKNOWN_ERROR: number; UNKNOWN_ERROR: number;
INVALID_ARGUMENT_ERROR: number; INVALID_ARGUMENT_ERROR: number;