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
*/
interface IContactError {
export interface IContactError {
/** Error code */
code: number;
/** Error message */
@ -90,7 +90,7 @@ interface IContactError {
/**
* @private
*/
declare var ContactError: {
export declare var ContactError: {
new (code: number): IContactError;
UNKNOWN_ERROR: number;
INVALID_ARGUMENT_ERROR: number;