difftreelog
fix remove cyclic imports
in: master
4 files changed
tests/src/eth/util/playgrounds/types.tsdiffbeforeafterboth1import {EthUniqueHelper} from './unique.dev';23export interface ContractImports {1export interface ContractImports {4 solPath: string;2 solPath: string;16 args: { [key: string]: string }14 args: { [key: string]: string }17};15};1819export type EthUniqueHelperConstructor = new (...args: any[]) => EthUniqueHelper;2016tests/src/eth/util/playgrounds/unique.dev.tsdiffbeforeafterboth181819import {DevUniqueHelper} from '../../../util/playgrounds/unique.dev';19import {DevUniqueHelper} from '../../../util/playgrounds/unique.dev';202021import {ContractImports, CompiledContract, NormalizedEvent, EthUniqueHelperConstructor} from './types';21import {ContractImports, CompiledContract, NormalizedEvent} from './types';222223// Native contracts ABI23// Native contracts ABI24import collectionHelpersAbi from '../../collectionHelpersAbi.json';24import collectionHelpersAbi from '../../collectionHelpersAbi.json';tests/src/util/playgrounds/types.tsdiffbeforeafterboth2// SPDX-License-Identifier: Apache-2.02// SPDX-License-Identifier: Apache-2.0334import {IKeyringPair} from '@polkadot/types/types';4import {IKeyringPair} from '@polkadot/types/types';5import {UniqueHelper} from './unique';657export interface IEvent {6export interface IEvent {8 section: string;7 section: string;tests/src/util/playgrounds/unique.tsdiffbeforeafterboth2772 }2772 }2773}2773}27742775export type UniqueHelperConstructor = new(...args: any[]) => UniqueHelper;277427762775// eslint-disable-next-line @typescript-eslint/naming-convention2777// eslint-disable-next-line @typescript-eslint/naming-convention2776function ScheduledUniqueHelper<T extends UniqueHelperConstructor>(Base: T) {2778function ScheduledUniqueHelper<T extends UniqueHelperConstructor>(Base: T) {