position.d.ts 208 B

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