import type { DslDefinition } from '@oinone/kunlun-dsl'; import { ViewType } from '@oinone/kunlun-meta'; import type { PropType } from 'vue'; export const MetadataViewProps = { currentHandle: { type: String }, isVirtual: { type: Boolean, default: false }, inline: { type: Boolean, default: false }, viewType: { type: String as PropType }, modelModel: { type: String }, modelName: { type: String }, moduleModule: { type: String }, moduleName: { type: String }, viewTemplate: { type: Object as PropType } };