Skip to content

Commit

Permalink
chore(client): update types for sql-template-tag 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolg42 committed Jun 2, 2020
1 parent 1f4aca0 commit 1a93070
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/packages/client/src/generation/generateClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,10 @@ export declare type RawValue = Value | Sql;
* A SQL instance can be nested within each other to build SQL strings.
*/
export declare class Sql {
protected rawStrings: ReadonlyArray<string>;
protected rawValues: ReadonlyArray<RawValue>;
values: Value[];
strings: string[];
rawStrings: ReadonlyArray<string>;
rawValues: ReadonlyArray<RawValue>;
constructor(rawStrings: ReadonlyArray<string>, rawValues: ReadonlyArray<RawValue>);
readonly values: Value[];
readonly strings: string[];
Expand Down

0 comments on commit 1a93070

Please sign in to comment.