-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from Shopify/fix-header-bugs-for-typescript
Fix header bugs for TypeScript.
- Loading branch information
Showing
70 changed files
with
147 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
{% if enumNames.count > 0 %}{% for enumName in enumNames %}export { {{ enumName }} } from "./{{ enumName }}" | ||
{% if header %}{{ header }} | ||
|
||
{% endif %}{% if enumNames.count > 0 %}{% for enumName in enumNames %}export { {{ enumName }} } from "./{{ enumName }}" | ||
{% endfor %} | ||
{% else %}export {} | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
{% if inputNames.count > 0 %}{% for inputName in inputNames %}export type { {{ inputName }} } from "./{{ inputName }}" | ||
{% if header %}{{ header }} | ||
|
||
{% endif %}{% if inputNames.count > 0 %}{% for inputName in inputNames %}export type { {{ inputName }} } from "./{{ inputName }}" | ||
{% endfor %} | ||
{% else %}export {} | ||
{% endif %} |
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Enums/CollectionRuleColumn.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
export enum CollectionRuleColumn { | ||
|
||
/** | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Enums/CollectionRuleRelation.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
export enum CollectionRuleRelation { | ||
|
||
/** | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Enums/CollectionSortOrder.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
export enum CollectionSortOrder { | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
export enum CountryCode { | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
export enum CurrencyCode { | ||
|
||
/** | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Enums/CustomerMarketingOptInLevel.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
export enum CustomerMarketingOptInLevel { | ||
|
||
/** | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Enums/DigitalWallet.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
export enum DigitalWallet { | ||
|
||
/** | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Enums/FulfillmentDisplayStatus.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
export enum FulfillmentDisplayStatus { | ||
|
||
/** | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Enums/FulfillmentEventStatus.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
export enum FulfillmentEventStatus { | ||
|
||
/** | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Enums/MetafieldValueType.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
export enum MetafieldValueType { | ||
|
||
/** | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Enums/OrderDisplayFulfillmentStatus.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
export enum OrderDisplayFulfillmentStatus { | ||
|
||
/** | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Enums/PrivateMetafieldValueType.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
export enum PrivateMetafieldValueType { | ||
|
||
/** | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Enums/ProductVariantInventoryManagement.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
export enum ProductVariantInventoryManagement { | ||
|
||
/** | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Enums/ProductVariantInventoryPolicy.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
export enum ProductVariantInventoryPolicy { | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
export enum TaxExemption { | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
export enum WeightUnit { | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Fragments/BasicFragment.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Fragments/ProductNodeTitle.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Fragments/TimelineBasicEventFragment.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Fragments/TimelineCommentEventFragment.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Fragments/TimelineEventFragment.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Fragments/TimelineFragment.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Inputs/CollectionInput.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
import { ID } from "../GraphApi" | ||
import { | ||
CollectionSortOrder, | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Inputs/CollectionPublicationInput.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
import { ID } from "../GraphApi" | ||
|
||
export interface CollectionPublicationInput { | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Inputs/CollectionRuleInput.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
import { ID } from "../GraphApi" | ||
import { | ||
CollectionRuleColumn, | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Inputs/CollectionRuleSetInput.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Inputs/CustomerInput.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
import { ID } from "../GraphApi" | ||
import { | ||
CustomerMarketingOptInLevel, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
import { ID } from "../GraphApi" | ||
|
||
export interface ImageInput { | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Inputs/InventoryItemInput.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
import { ID } from "../GraphApi" | ||
|
||
export interface InventoryItemInput { | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Inputs/InventoryLevelInput.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
import { ID } from "../GraphApi" | ||
|
||
export interface InventoryLevelInput { | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Inputs/MailingAddressInput.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
import { ID } from "../GraphApi" | ||
import { | ||
CountryCode, | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Inputs/MetafieldInput.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
import { ID } from "../GraphApi" | ||
import { | ||
MetafieldValueType, | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Inputs/PrivateMetafieldInput.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Inputs/PrivateMetafieldValueInput.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
import { ID } from "../GraphApi" | ||
import { | ||
PrivateMetafieldValueType, | ||
|
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Inputs/ProductVariantInput.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
import { ID } from "../GraphApi" | ||
import { | ||
ProductVariantInventoryManagement, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// Syrup auto-generated file | ||
|
||
import { ID } from "../GraphApi" | ||
|
||
export interface SEOInput { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Mutations/CreateCollectionMutation.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Mutations/ProductVariantShippingMutation.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Mutations/TestMutation0Mutation.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Queries/CustomerTimelineQuery.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Queries/NodeInterfacesQuery.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Queries/ProductsListQuery.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Queries/ShopDetailsQuery.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Queries/ShopQueryQuery.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Queries/TestDeprecatedFieldsQuery.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Queries/TestQuery0Query.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Queries/TestQuery10Query.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Queries/TestQuery11Query.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Queries/TestQuery1Query.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Queries/TestQuery2Query.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Queries/TestQuery3Query.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Tests/Resources/ExpectedTypeScriptCode/Queries/TestQuery4Query.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.