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.

querystring.d.ts 1.0KB

12345678910111213141516171819202122232425262728
  1. declare module 'querystring' {
  2. interface StringifyOptions {
  3. encodeURIComponent?: (str: string) => string;
  4. }
  5. interface ParseOptions {
  6. maxKeys?: number;
  7. decodeURIComponent?: (str: string) => string;
  8. }
  9. interface ParsedUrlQuery extends NodeJS.Dict<string | string[]> { }
  10. interface ParsedUrlQueryInput extends NodeJS.Dict<string | number | boolean | ReadonlyArray<string> | ReadonlyArray<number> | ReadonlyArray<boolean> | null> {
  11. }
  12. function stringify(obj?: ParsedUrlQueryInput, sep?: string, eq?: string, options?: StringifyOptions): string;
  13. function parse(str: string, sep?: string, eq?: string, options?: ParseOptions): ParsedUrlQuery;
  14. /**
  15. * The querystring.encode() function is an alias for querystring.stringify().
  16. */
  17. const encode: typeof stringify;
  18. /**
  19. * The querystring.decode() function is an alias for querystring.parse().
  20. */
  21. const decode: typeof parse;
  22. function escape(str: string): string;
  23. function unescape(str: string): string;
  24. }