important.d.ts 164 B

12345678
  1. import { Styles } from '../types/style';
  2. declare function important(
  3. styleBlock: Styles,
  4. rules?: Array<string> | string,
  5. ): Styles;
  6. export default important;