Skip to content

Commit

Permalink
refractor(contacts): export ContactError
Browse files Browse the repository at this point in the history
closes #731
  • Loading branch information
ihadeed committed Oct 27, 2016
1 parent 634843e commit 685ac5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/contacts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class Contact implements IContactProperties {
/**
* @private
*/
interface IContactError {
export interface IContactError {
/** Error code */
code: number;
/** Error message */
Expand All @@ -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;
Expand Down

0 comments on commit 685ac5c

Please sign in to comment.