[ABANDONDED] Set of "apps" for the Flexor social network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
382 B

5 years ago
  1. declare module 'postcss-normalize' {
  2. import {
  3. plugin, Plugin, ParserInput,
  4. Result, LazyResult, Root, ProcessOptions
  5. } from 'postcss'
  6. interface PluginOptions {
  7. allowDuplicates?: boolean
  8. forceImport?: string | boolean
  9. browsers?: string
  10. }
  11. const PostcssNormalize: Plugin<PluginOptions>
  12. export default PostcssNormalize
  13. }