printString.d.ts 222 B

12345
  1. /**
  2. * Prints a string as a GraphQL StringValue literal. Replaces control characters
  3. * and excluded characters (" U+0022 and \\ U+005C) with escape sequences.
  4. */
  5. export declare function printString(str: string): string;