Files
qnc-admin-v3/packages/effects/common-ui/src/ui/about/about.ts

15 lines
248 B
TypeScript
Raw Normal View History

2026-01-10 18:11:29 +08:00
import type { Component } from 'vue';
interface AboutProps {
description?: string;
name?: string;
title?: string;
}
interface DescriptionItem {
content: Component | string;
title: string;
}
export type { AboutProps, DescriptionItem };