mirror of
https://github.com/zhigang1992/wallet.git
synced 2026-01-12 09:34:37 +08:00
21 lines
501 B
TypeScript
21 lines
501 B
TypeScript
/* eslint-disable */
|
|
import type { SystemStyleObject, ConditionalValue } from '../types'
|
|
import type { PropertyValue } from '../types/prop-type'
|
|
import type { Properties } from '../types/csstype'
|
|
import type { Tokens } from '../tokens'
|
|
|
|
export type BoxProperties = {
|
|
|
|
}
|
|
|
|
|
|
type BoxOptions = BoxProperties & Omit<SystemStyleObject, keyof BoxProperties >
|
|
|
|
interface BoxPatternFn {
|
|
(options?: BoxOptions): string
|
|
raw: (options: BoxOptions) => BoxOptions
|
|
}
|
|
|
|
|
|
export declare const box: BoxPatternFn;
|