Rocky_Mountain_Vending/.pnpm-store/v10/files/48/11d02fa9d0f03aec6274281e3cc10bee2480c8ff6ee94b546f899f537c0f19607e040ad09de427dd050b4a6d7d233ca26026ac18575b2c7405653220904786
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
480 B
Text

import { Falsy, MonoTypeOperatorFunction, OperatorFunction } from '../types';
export declare function skipWhile<T>(predicate: BooleanConstructor): OperatorFunction<T, Extract<T, Falsy> extends never ? never : T>;
export declare function skipWhile<T>(predicate: (value: T, index: number) => true): OperatorFunction<T, never>;
export declare function skipWhile<T>(predicate: (value: T, index: number) => boolean): MonoTypeOperatorFunction<T>;
//# sourceMappingURL=skipWhile.d.ts.map