Fix version to be proper value (#891)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev 2022-01-31 16:08:51 +07:00 committed by GitHub
parent 64b15cb13c
commit 51b0cdb5f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,12 +13,10 @@
// limitations under the License.
//
import type { IntlString, Asset, Plugin, Metadata } from '@anticrm/platform'
import type { Ref, Class, Doc, Obj, Space, Mixin, Data, Version } from '@anticrm/core'
import type { AnyComponent } from '@anticrm/ui'
import type { Class, Doc, Mixin, Obj, Ref, Space } from '@anticrm/core'
import type { Asset, IntlString, Metadata, Plugin } from '@anticrm/platform'
import { plugin } from '@anticrm/platform'
import type { AnyComponent } from '@anticrm/ui'
/**
* @public
@ -94,6 +92,6 @@ export default plugin(workbenchId, {
WorkbenchApp: '' as AnyComponent
},
metadata: {
RequiredVersion: '' as Metadata<Data<Version>>
RequiredVersion: '' as Metadata<string>
}
})