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 4f5994e commit 5e66a58
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/object-boolean-combinations/src/main.ts
Expand Up @@ -9,10 +9,10 @@ import { version as v } from "../package.json";

const version: string = v;

interface BoolObj {
export interface BoolObj {
[key: string]: boolean;
}
interface Obj {
export interface Obj {
[key: string]: any;
}

Expand Down
2 changes: 1 addition & 1 deletion packages/object-boolean-combinations/types/index.d.ts
Expand Up @@ -10,4 +10,4 @@ declare function combinations(
Override?: undefined | Obj
): BoolObj[];

export { combinations, version };
export { BoolObj, Obj, combinations, version };

0 comments on commit 5e66a58

Please sign in to comment.