Rocky_Mountain_Vending/.pnpm-store/v10/files/dd/8d2fdb0ca6bb881d2cd4294f66f7457d33b6970a387ed6a87cc50ad8575347606d467f00810a1ae3bfb5943cf71363d2deb4367661d955a8b6696bc5fac440
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

5 lines
No EOL
579 B
Text

import { SchedulerLike } from '../types';
import { Observable } from '../Observable';
export declare function bindCallback(callbackFunc: (...args: any[]) => void, resultSelector: (...args: any[]) => any, scheduler?: SchedulerLike): (...args: any[]) => Observable<any>;
export declare function bindCallback<A extends readonly unknown[], R extends readonly unknown[]>(callbackFunc: (...args: [...A, (...res: R) => void]) => void, schedulerLike?: SchedulerLike): (...arg: A) => Observable<R extends [] ? void : R extends [any] ? R[0] : R>;
//# sourceMappingURL=bindCallback.d.ts.map