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.

alignString.d.ts 280B

123456
  1. import type { Alignment } from './types/api';
  2. /**
  3. * Pads a string to the left and/or right to position the subject
  4. * text in a desired alignment within a container.
  5. */
  6. export declare const alignString: (subject: string, containerWidth: number, alignment: Alignment) => string;