Skip to content

Commit

Permalink
feat: add export for interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mg901 committed Nov 12, 2019
1 parent f8ff3a5 commit bcc67a0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
interface IProps {
export interface IProps {
theme: object;
}

type Orientation = 'portrait' | 'landscape';
export type Orientation = 'portrait' | 'landscape';

interface IMediaQueries {
export interface IMediaQueries {
[key: string]: string;
}

interface IOptions {
export interface IOptions {
_browserContext?: number;
pathToMediaQueries?: string[];
errorPrefix?: string;
defaultMediaQueries?: IMediaQueries;
}

interface IState {
export interface IState {
_browserContext: number;
pathToMediaQueries: string[];
errorPrefix: string;
Expand Down

0 comments on commit bcc67a0

Please sign in to comment.