22 lines
589 B
TypeScript
22 lines
589 B
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
// @generated
|
|
// This file was automatically generated and should not be edited.
|
|
|
|
// ====================================================
|
|
// GraphQL query operation: GetCurrencySymbol
|
|
// ====================================================
|
|
|
|
export interface GetCurrencySymbol_transactioncurrency {
|
|
__typename: "transactioncurrency";
|
|
currencysymbol: string | null;
|
|
}
|
|
|
|
export interface GetCurrencySymbol {
|
|
transactioncurrency: GetCurrencySymbol_transactioncurrency | null;
|
|
}
|
|
|
|
export interface GetCurrencySymbolVariables {
|
|
currencyid: any;
|
|
}
|