Skip to content

Commit

Permalink
Updated users definition file
Browse files Browse the repository at this point in the history
  • Loading branch information
MKHenson committed May 9, 2016
1 parent 972f776 commit 81a2a40
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions server/src/definitions/required/webinate-users.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,18 @@ declare module UsersInterface
/*
* Interface for file added events
*/
export interface IFilesAddedEvent extends IEvent
export interface IFileAddedEvent extends IEvent
{
username: string;
files: Array<IFileEntry>;
file: IFileEntry;
}

/*
* Interface for file removed events
*/
export interface IFilesRemovedEvent extends IEvent
export interface IFileRemovedEvent extends IEvent
{
files: Array<IFileEntry>;
file: IFileEntry;
}

/*
Expand Down Expand Up @@ -277,7 +277,7 @@ declare module UsersInterface
export interface IAuthenticationResponse extends IResponse
{
authenticated: boolean;
user: IUserEntry;
user?: IUserEntry;
}

/*
Expand Down

0 comments on commit 81a2a40

Please sign in to comment.