Files
game-cards-poker-design/frontend/node_modules/element-plus/es/components/collapse/src/collapse-item.d.ts
Poker Design Developer 5dbcebf7a2 Fix frontend blank page issues
- Fix router import path in main.js
- Handle Django REST Framework pagination format in API calls
- Add getTemplates function to project API
- Restart frontend development server
2026-05-31 18:40:56 +08:00

40 lines
1.8 KiB
TypeScript

import { IconPropType } from "../../../utils/vue/icon.js";
import { EpPropFinalized } from "../../../utils/vue/props/types.js";
import { CollapseActiveName } from "./collapse.js";
import * as _$vue from "vue";
import { ExtractPublicPropTypes } from "vue";
//#region ../../packages/components/collapse/src/collapse-item.d.ts
interface CollapseItemProps {
/**
* @description title of the panel
*/
title?: string;
/**
* @description unique identification of the panel
*/
name?: CollapseActiveName;
/**
* @description icon of the collapse item
*/
icon?: IconPropType;
/**
* @description disable the collapse item
*/
disabled?: boolean;
}
/**
* @deprecated Removed after 3.0.0, Use `CollapseItemProps` instead.
*/
declare const collapseItemProps: {
readonly title: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
readonly name: EpPropFinalized<(new (...args: any[]) => string | number) | (() => CollapseActiveName) | (((new (...args: any[]) => string | number) | (() => CollapseActiveName)) | null)[], unknown, unknown, undefined, boolean>;
readonly icon: EpPropFinalized<(new (...args: any[]) => (string | _$vue.Component) & {}) | (() => string | _$vue.Component) | (((new (...args: any[]) => (string | _$vue.Component) & {}) | (() => string | _$vue.Component)) | null)[], unknown, unknown, _$vue.DefineComponent<{}, void, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>, boolean>;
readonly disabled: BooleanConstructor;
};
/**
* @deprecated Removed after 3.0.0, Use `CollapseItemProps` instead.
*/
type CollapseItemPropsPublic = ExtractPublicPropTypes<typeof collapseItemProps>;
//#endregion
export { CollapseItemProps, CollapseItemPropsPublic, collapseItemProps };