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.

index.d.ts 1.3KB

1234567891011121314151617181920212223242526272829303132
  1. import { Options as ParserOptions } from './parser/index';
  2. import descriptionTokenizer from './parser/tokenizers/description';
  3. import nameTokenizer from './parser/tokenizers/name';
  4. import tagTokenizer from './parser/tokenizers/tag';
  5. import typeTokenizer from './parser/tokenizers/type';
  6. import alignTransform from './transforms/align';
  7. import indentTransform from './transforms/indent';
  8. import crlfTransform from './transforms/crlf';
  9. import { flow as flowTransform } from './transforms/index';
  10. import { rewireSpecs, rewireSource, seedBlock, seedTokens } from './util';
  11. export * from './primitives';
  12. export declare function parse(source: string, options?: Partial<ParserOptions>): import("./primitives").Block[];
  13. export declare const stringify: import("./stringifier/index").Stringifier;
  14. export { default as inspect } from './stringifier/inspect';
  15. export declare const transforms: {
  16. flow: typeof flowTransform;
  17. align: typeof alignTransform;
  18. indent: typeof indentTransform;
  19. crlf: typeof crlfTransform;
  20. };
  21. export declare const tokenizers: {
  22. tag: typeof tagTokenizer;
  23. type: typeof typeTokenizer;
  24. name: typeof nameTokenizer;
  25. description: typeof descriptionTokenizer;
  26. };
  27. export declare const util: {
  28. rewireSpecs: typeof rewireSpecs;
  29. rewireSource: typeof rewireSource;
  30. seedBlock: typeof seedBlock;
  31. seedTokens: typeof seedTokens;
  32. };