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 326B

1234567
  1. import { Spec } from '../../primitives';
  2. /**
  3. * Splits `spect.lines[].token.description` into other tokens,
  4. * and populates the spec.{tag, name, type, description}. Invoked in a chaing
  5. * with other tokens, operations listed above can be moved to separate tokenizers
  6. */
  7. export declare type Tokenizer = (spec: Spec) => Spec;