11 lines
248 B
TypeScript
Raw Normal View History

2021-02-07 20:01:37 +01:00
export declare type Handle = {
show(): any;
is_shown(): any;
hide(): any;
update(): any;
};
export declare function initialize(entry: JQuery, callbacks?: {
on_show?(tag: JQuery): any;
on_hide?(tag: JQuery): any;
}): Handle;