16 lines
262 B
JavaScript
16 lines
262 B
JavaScript
|
export default () => ({
|
||
|
projectId: null,
|
||
|
tagName: null,
|
||
|
releasesPagePath: null,
|
||
|
markdownDocsPath: null,
|
||
|
markdownPreviewPath: null,
|
||
|
|
||
|
release: null,
|
||
|
|
||
|
isFetchingRelease: false,
|
||
|
fetchError: null,
|
||
|
|
||
|
isUpdatingRelease: false,
|
||
|
updateError: null,
|
||
|
});
|