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

123456789101112131415161718192021
  1. export type Token = ( payload?: TokenPayload ) => string | number;
  2. export interface TokenPayload {
  3. method: string
  4. params: (string | number)[]
  5. tokens: Record<string, Token>
  6. defaultTokens: Record<string, Token>
  7. }
  8. declare function consoleStamp(console: Console, options?: {
  9. format?: string
  10. tokens?: Record<string, Token>
  11. include?: string[]
  12. level?: string
  13. extend?: Record<string, number>
  14. stdout?: WritableStream
  15. stderr?: WritableStream
  16. use_custom_message?: boolean
  17. }): void;
  18. export default consoleStamp;