Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

parser-postcss.d.ts 161B

12345678910
  1. import { Parser } from './';
  2. declare const parser: {
  3. parsers: {
  4. css: Parser;
  5. less: Parser;
  6. scss: Parser;
  7. };
  8. };
  9. export = parser;