- 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>
9 lines
312 B
TypeScript
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; |