forked from hero/www_hero
12 lines
335 B
TypeScript
12 lines
335 B
TypeScript
|
import { CollapseOptions } from './types';
|
||
|
export declare interface CollapseInterface {
|
||
|
_targetEl: HTMLElement | null;
|
||
|
_triggerEl: HTMLElement | null;
|
||
|
_options: CollapseOptions;
|
||
|
_visible: boolean;
|
||
|
_init(): void;
|
||
|
collapse(): void;
|
||
|
expand(): void;
|
||
|
toggle(): void;
|
||
|
}
|
||
|
//# sourceMappingURL=interface.d.ts.map
|