File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
packages/commons/docs-loader/src Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff 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-
124117interface GetDocsYmlSuccess {
125118 type : "ok" ;
126119 result : string ;
@@ -132,6 +125,13 @@ interface GetDocsYmlSuccess {
132125
133126export 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+
135135export type FernConfigJsonErrors =
136136 | GetFernProjectErrors
137137 | { type : "FERN_CONFIG_JSON_MALFORMED" ; parsingErrorMessage : string }
You can’t perform that action at this time.
0 commit comments