7 lines
110 B
TypeScript
7 lines
110 B
TypeScript
|
|
declare global {
|
||
|
|
interface JQuery<TElement = HTMLElement> {
|
||
|
|
dividerfy(): this;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
export {};
|