SQLFragmentinterface

{
	readonly strings: ImmutableArray<string>;
	readonly values: ImmutableArray<unknown>;
}
PropertyType
.stringsImmutableArray<string>
Immutable array: an array that cannot be changed. required readonly
.valuesImmutableArray<unknown>
Immutable array: an array that cannot be changed. required readonly

SQL fragment made from template strings plus embedded expressions, ready to be composed into a query.