amis-rpc-design/node_modules/styled-components/native/dist/constructors/css.d.ts
2023-10-07 19:42:30 +08:00

5 lines
348 B
TypeScript

import { Interpolation, NoInfer, RuleSet, Styles } from '../types';
declare function css(styles: Styles<object>, ...interpolations: Interpolation<object>[]): RuleSet<object>;
declare function css<Props extends object>(styles: Styles<NoInfer<Props>>, ...interpolations: Interpolation<NoInfer<Props>>[]): RuleSet<NoInfer<Props>>;
export default css;