Skip to content

Commit

Permalink
fix: unexported aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
felixroos committed Sep 6, 2017
1 parent d1e6744 commit 0b91795
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/EventEmitter.ts
Expand Up @@ -28,7 +28,7 @@
* @class
* @access private
*/
class EventEmitter {
export class EventEmitter {
protected listeners: Map<string, Array<(...args : any[]) => void>>;
/**
* default constructor initialising a empty {@link Map} for event listeners.
Expand Down
4 changes: 2 additions & 2 deletions src/resources/ListResource.ts
Expand Up @@ -278,7 +278,7 @@ export type filterOptions = {
[key: string]: filterType
}

type filter = {
export type filter = {
exact?: string,
search?: string,
from?: any,
Expand All @@ -287,4 +287,4 @@ type filter = {
all?: Array<string>
}

type filterType = Array<string> | number | string | filter;
export type filterType = Array<string> | number | string | filter;

0 comments on commit 0b91795

Please sign in to comment.