Skip to content

Commit 0648b45

Browse files
committed
Nit: reorder type definitions
1 parent c255c5b commit 0648b45

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/commons/docs-loader/src/editable-docs-loader.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,6 @@ interface DocsYmlError {
114114
error: DocsYmlErrors;
115115
}
116116

117-
interface GetDocsYmlAndReferencesSuccess {
118-
type: "ok";
119-
result: Map<string, string>;
120-
}
121-
122-
export type GetDocsYmlAndReferencesResult = GetDocsYmlAndReferencesSuccess | DocsYmlError;
123-
124117
interface GetDocsYmlSuccess {
125118
type: "ok";
126119
result: string;
@@ -132,6 +125,13 @@ interface GetDocsYmlSuccess {
132125

133126
export type GetDocsYmlResult = GetDocsYmlSuccess | DocsYmlError;
134127

128+
interface GetDocsYmlAndReferencesSuccess {
129+
type: "ok";
130+
result: Map<string, string>;
131+
}
132+
133+
export type GetDocsYmlAndReferencesResult = GetDocsYmlAndReferencesSuccess | DocsYmlError;
134+
135135
export type FernConfigJsonErrors =
136136
| GetFernProjectErrors
137137
| { type: "FERN_CONFIG_JSON_MALFORMED"; parsingErrorMessage: string }

0 commit comments

Comments
 (0)