Rocky_Mountain_Vending/.pnpm-store/v10/files/34/8ededc3fde4974449eb5495445dec573950640c10ef743344a22a48b557c95d0d9d5a8874fe846a79f93fc3efbe2eb73e73c54523be510adb24a5b3d5924db
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

13 lines
No EOL
382 B
Text

import { Subject } from './Subject';
/**
* A variant of Subject that requires an initial value and emits its current
* value whenever it is subscribed to.
*/
export declare class BehaviorSubject<T> extends Subject<T> {
private _value;
constructor(_value: T);
get value(): T;
getValue(): T;
next(value: T): void;
}
//# sourceMappingURL=BehaviorSubject.d.ts.map