11 lines
318 B
TypeScript
Raw Normal View History

2021-02-20 18:55:36 +01:00
declare global {
interface JQuery<TElement = HTMLElement> {
asTabWidget(copy?: boolean): JQuery<TElement>;
tabify(copy?: boolean): this;
changeElementType(type: string): JQuery<TElement>;
}
}
export declare const TabFunctions: {
2021-05-01 23:38:36 +02:00
tabify(template: JQuery, copy?: boolean): JQuery;
2021-02-20 18:55:36 +01:00
};