We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5899159 commit 58314dcCopy full SHA for 58314dc
1 file changed
src/feature-flags/properties.ts
@@ -12,7 +12,7 @@ export enum RepositoryPropertyName {
12
}
13
14
/** Parsed types of the known repository properties. */
15
-type AllRepositoryProperties = {
+export type AllRepositoryProperties = {
16
[RepositoryPropertyName.DISABLE_OVERLAY]: boolean;
17
[RepositoryPropertyName.EXTRA_QUERIES]: string;
18
};
@@ -21,7 +21,7 @@ type AllRepositoryProperties = {
21
export type RepositoryProperties = Partial<AllRepositoryProperties>;
22
23
/** Maps known repository properties to the type we expect to get from the API. */
24
-type RepositoryPropertyApiType = {
+export type RepositoryPropertyApiType = {
25
[RepositoryPropertyName.DISABLE_OVERLAY]: string;
26
27
0 commit comments