Files
soroban-abacus-flashcards/apps/web/styled-system/css/css.d.ts
Thomas Hallock 559b631766 cleanup: remove legacy files after monorepo migration
- Remove original client/, config/, fonts/, src/, templates/ directories
- Clean up miscellaneous test HTML files
- Maintain clean project structure after reorganization
- All functionality preserved in packages/core

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-14 08:04:07 -05:00

9 lines
312 B
TypeScript

/* eslint-disable */
import type { SystemStyleObject } from '../types/index';
interface CssFunction {
(...styles: Array<SystemStyleObject | undefined | null | false>): string
raw: (...styles: Array<SystemStyleObject | undefined | null | false>) => SystemStyleObject
}
export declare const css: CssFunction;