import { Vue } from 'vue-property-decorator'; import './app-showdown.less'; export default class AppShowdown extends Vue { /** * 双向绑定值 * * @type {*} * @memberof AppShowdown */ readonly itemValue?: any; /** * 当前值 * * @memberof AppShowdown */ get curVal(): any; /** * 当前值 * * @memberof AppShowdown */ set curVal(val: any); render(): JSX.Element; } //# sourceMappingURL=app-showdown.d.ts.map