// src/global.d.ts
export {};
declare var _: Underscore.Static;
declare var lifeline_donation: any;
declare global {
interface Window {
jQuery: typeof import("jquery");
lifeline_donation: {
ajaxurl: string;
nonce: string;
};
}
interface JQuery {
knob(): JQuery; // You can customize the return type based on how the method works
}
}