Skip to content

Commit

Permalink
feat: export types
Browse files Browse the repository at this point in the history
  • Loading branch information
revelt committed Aug 12, 2022
1 parent 9d2e8ad commit 2a9bfce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/ranges-push/src/main.ts
Expand Up @@ -22,7 +22,7 @@ function isStr(something: any): boolean {
return typeof something === "string";
}

interface Opts {
export interface Opts {
limitToBeAddedWhitespace: boolean;
limitLinebreaksCount: number;
mergeType: 1 | 2 | "1" | "2" | undefined;
Expand Down
2 changes: 1 addition & 1 deletion packages/ranges-push/types/index.d.ts
Expand Up @@ -31,4 +31,4 @@ declare class Ranges {
last(): Range | null;
}

export { Range, Ranges, defaults, version };
export { Opts, Range, Ranges, defaults, version };

0 comments on commit 2a9bfce

Please sign in to comment.