UNPKG

208 BTypeScriptView Raw
1import { Styles } from '../types/style';
2
3declare function position(
4 firstValue: string | number | null,
5 ...values: Array<null | void | string | null | void | number>
6): Styles;
7
8export default position;