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>
13 lines
564 B
Text
13 lines
564 B
Text
import { EngineType } from './Engine';
|
|
import { WindowType } from './utils';
|
|
export type AnimationsUpdateType = (engine: EngineType) => void;
|
|
export type AnimationsRenderType = (engine: EngineType, alpha: number) => void;
|
|
export type AnimationsType = {
|
|
init: () => void;
|
|
destroy: () => void;
|
|
start: () => void;
|
|
stop: () => void;
|
|
update: () => void;
|
|
render: (alpha: number) => void;
|
|
};
|
|
export declare function Animations(ownerDocument: Document, ownerWindow: WindowType, update: () => void, render: (alpha: number) => void): AnimationsType;
|