Skip to content

Commit

Permalink
TW-737 Remove unused exports
Browse files Browse the repository at this point in the history
  • Loading branch information
keshan3262 committed Oct 27, 2023
1 parent 6fa6bf5 commit 337dcae
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/lib/apis/tzkt/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ interface TzktAccountBase {
alias: string | nullish;
}

export interface TzktUserAccount extends TzktAccountBase {
interface TzktUserAccount extends TzktAccountBase {
type: TzktAccountType.User;
id: number;
publicKey: string;
Expand Down Expand Up @@ -290,7 +290,7 @@ export interface TzktUserAccount extends TzktAccountBase {
lastActivityTime: string | nullish;
}

export interface TzktDelegateAccount extends TzktAccountBase {
interface TzktDelegateAccount extends TzktAccountBase {
type: TzktAccountType.Delegate;
id: number;
active: boolean;
Expand Down Expand Up @@ -364,7 +364,7 @@ export interface TzktDelegateAccount extends TzktAccountBase {
software: { date: string; version: string | nullish };
}

export interface TzktContractAccount extends TzktAccountBase {
interface TzktContractAccount extends TzktAccountBase {
type: TzktAccountType.Contract;
id: number;
kind: 'delegator_contract' | 'smart_contract' | nullish;
Expand Down Expand Up @@ -401,7 +401,7 @@ export interface TzktContractAccount extends TzktAccountBase {
storage: unknown;
}

export interface TzktGhostAccount extends TzktAccountBase {
interface TzktGhostAccount extends TzktAccountBase {
type: TzktAccountType.Ghost;
id: number;
activeTokensCount: number;
Expand All @@ -414,7 +414,7 @@ export interface TzktGhostAccount extends TzktAccountBase {
extras: unknown;
}

export interface TzktRollupAccount extends TzktAccountBase {
interface TzktRollupAccount extends TzktAccountBase {
type: TzktAccountType.Rollup;
id: number;
creator: TzktAlias | nullish;
Expand All @@ -439,7 +439,7 @@ export interface TzktRollupAccount extends TzktAccountBase {
extras: unknown;
}

export interface TzktSmartRollupAccount extends TzktAccountBase {
interface TzktSmartRollupAccount extends TzktAccountBase {
type: TzktAccountType.SmartRollup;
id: number;
creator: TzktAlias | nullish;
Expand Down Expand Up @@ -475,7 +475,7 @@ export interface TzktSmartRollupAccount extends TzktAccountBase {
extras: unknown;
}

export interface TzktEmptyAccount extends TzktAccountBase {
interface TzktEmptyAccount extends TzktAccountBase {
type: TzktAccountType.Empty;
alias: undefined;
counter: number;
Expand Down

0 comments on commit 337dcae

Please sign in to comment.