iteration-deck
Version:
AI-first prototyping web components for comparing interactive UI variations. Perfect for designers working with AI coding agents to create multiple design iterations in prototypes.
12 lines • 573 B
TypeScript
/**
* Web Components entry point
*
* Exports the Lit-based web components for use in any framework
* or vanilla HTML environments.
*/
export * from './components';
export { subscribeToIterationStore, getIterationStoreState, isDevelopmentMode } from './store/iteration-store';
export type { IterationStore, DeckMetadata } from './store/iteration-store';
export * from './types';
export { detectEnvironment, isDevelopment, generateSlideId, validateDeckId, isNavigationShortcut, debounce, throttle, warnLog, errorLog, } from './utils';
//# sourceMappingURL=index.d.ts.map