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>
14 lines
464 B
Text
14 lines
464 B
Text
import type { FormatLongFn, FormatLongWidth } from "../types.js";
|
|
export interface BuildFormatLongFnArgs<
|
|
DefaultMatchWidth extends FormatLongWidth,
|
|
> {
|
|
formats: Partial<{
|
|
[format in FormatLongWidth]: string;
|
|
}> & {
|
|
[format in DefaultMatchWidth]: string;
|
|
};
|
|
defaultWidth: DefaultMatchWidth;
|
|
}
|
|
export declare function buildFormatLongFn<
|
|
DefaultMatchWidth extends FormatLongWidth,
|
|
>(args: BuildFormatLongFnArgs<DefaultMatchWidth>): FormatLongFn;
|