Rocky_Mountain_Vending/.pnpm-store/v10/files/33/dcabaeacf76993698825ea45ec5ca14776f9474b1301149dfede7d3c86cf3e74c197f28f8e861bef084e14b5972caa69c055dd36483f08d0f0fd7368fe64ab
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

22 lines
1.2 KiB
Text

import type tsModule from 'typescript/lib/tsserverlibrary';
type TypeScript = typeof import('typescript/lib/tsserverlibrary');
export declare function log(message: string): void;
export declare function init(opts: {
ts: TypeScript;
info: tsModule.server.PluginCreateInfo;
}): void;
export declare function getTs(): typeof tsModule;
export declare function getInfo(): tsModule.server.PluginCreateInfo;
export declare function getTypeChecker(): tsModule.TypeChecker | undefined;
export declare function getSource(fileName: string): tsModule.SourceFile | undefined;
export declare function removeStringQuotes(str: string): string;
export declare const isPositionInsideNode: (position: number, node: tsModule.Node) => boolean;
export declare const isDefaultFunctionExport: (node: tsModule.Node) => node is tsModule.FunctionDeclaration;
export declare const isInsideApp: (filePath: string) => boolean;
export declare const isAppEntryFile: (filePath: string) => boolean;
export declare const isPageFile: (filePath: string) => boolean;
export declare function getEntryInfo(fileName: string, throwOnInvalidDirective?: boolean): {
client: boolean;
server: boolean;
};
export {};