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.

sisteransi.d.ts 1.1KB

1234567891011121314151617181920212223242526272829303132333435
  1. export const beep: string;
  2. export const clear: string;
  3. export namespace cursor {
  4. export const left: string;
  5. export const hide: string;
  6. export const show: string;
  7. export const save: string;
  8. export const restore: string;
  9. export function to(x: number, y?: number): string;
  10. export function move(x: number, y: number): string;
  11. export function up(count?: number): string;
  12. export function down(count?: number): string;
  13. export function forward(count?: number): string;
  14. export function backward(count?: number): string;
  15. export function nextLine(count?: number): string;
  16. export function prevLine(count?: number): string;
  17. }
  18. export namespace scroll {
  19. export function up(count?: number): string;
  20. export function down(count?: number): string;
  21. }
  22. export namespace erase {
  23. export const screen: string;
  24. export const line: string;
  25. export const lineEnd: string;
  26. export const lineStart: string;
  27. export function up(count?: number): string;
  28. export function down(count?: number): string;
  29. export function lines(count: number): string;
  30. }