mirror of
https://github.com/zhigang1992/wallet.git
synced 2026-01-12 09:34:37 +08:00
9 lines
231 B
TypeScript
9 lines
231 B
TypeScript
/* eslint-disable */
|
|
import type { SystemStyleObject } from '../types'
|
|
|
|
interface CssFunction {
|
|
(styles: SystemStyleObject): string
|
|
raw: (styles: SystemStyleObject) => SystemStyleObject
|
|
}
|
|
|
|
export declare const css: CssFunction; |