Files
manolia-alpha/node_modules/buetify/lib/transitions/shared/expandTransition.d.ts
Robin COuret e0e50af706 init component
2026-02-16 17:28:37 +01:00

14 lines
480 B
TypeScript
Executable File

import { BaseTransitionProps } from 'vue';
interface HTMLExpandElement extends HTMLElement {
_parent?: (Node & ParentNode & HTMLElement) | null;
_initialStyle: {
transition: string;
visibility: string | null;
overflow: string | null;
height?: string | null;
width?: string | null;
};
}
export declare function createExpandTransition(expandedParentClass?: string, x?: boolean): BaseTransitionProps<HTMLExpandElement>;
export {};