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

1234567891011
  1. /* index.d.ts (C) 2015-present SheetJS */
  2. // TypeScript Version: 2.2
  3. /** Version string */
  4. export const version: string;
  5. /** Generate formatted string from format and subsequent arguments */
  6. export function sprintf(fmt: string, ...args: any[]): string;
  7. /** Generate formatted string from format and array of variables */
  8. export function vsprintf(fmt: string, args: any[]): string;