[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.

21 lines
529 B

5 years ago
  1. declare module 'postcss-preset-env' {
  2. import {
  3. plugin, Plugin, ParserInput,
  4. Result, LazyResult, Root, ProcessOptions
  5. } from 'postcss';
  6. interface PluginOptions {
  7. stage?: number;
  8. features?: any;
  9. browsers?: string;
  10. insertBefore?: any;
  11. insertAfter?: any;
  12. autoprefixer?: any;
  13. preserve?: boolean;
  14. importFrom?: string;
  15. exportTo?: string;
  16. }
  17. const PostcssPresetEnv: Plugin<PluginOptions>;
  18. export default PostcssPresetEnv;
  19. }