Rocky_Mountain_Vending/.pnpm-store/v10/files/26/b55dc22d852e1bd7d37bb531e5922f81797fb7e8e6fd529afff6dd66723177142c06d6d37e0952fef060e7bf150b87e7be39e2823eff7fe22949b8b647d18e
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

15 lines
No EOL
426 B
Text

import type { Noop } from '../types';
export type Observer<T> = {
next: (value: T) => void;
};
export type Subscription = {
unsubscribe: Noop;
};
export type Subject<T> = {
readonly observers: Observer<T>[];
subscribe: (value: Observer<T>) => Subscription;
unsubscribe: Noop;
} & Observer<T>;
declare const _default: <T>() => Subject<T>;
export default _default;
//# sourceMappingURL=createSubject.d.ts.map