Skip to content

Commit 58314dc

Browse files
committed
Export types that weren't already
1 parent 5899159 commit 58314dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/feature-flags/properties.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export enum RepositoryPropertyName {
1212
}
1313

1414
/** Parsed types of the known repository properties. */
15-
type AllRepositoryProperties = {
15+
export type AllRepositoryProperties = {
1616
[RepositoryPropertyName.DISABLE_OVERLAY]: boolean;
1717
[RepositoryPropertyName.EXTRA_QUERIES]: string;
1818
};
@@ -21,7 +21,7 @@ type AllRepositoryProperties = {
2121
export type RepositoryProperties = Partial<AllRepositoryProperties>;
2222

2323
/** Maps known repository properties to the type we expect to get from the API. */
24-
type RepositoryPropertyApiType = {
24+
export type RepositoryPropertyApiType = {
2525
[RepositoryPropertyName.DISABLE_OVERLAY]: string;
2626
[RepositoryPropertyName.EXTRA_QUERIES]: string;
2727
};

0 commit comments

Comments
 (0)