Mirror of https://github.com/roostorg/coop
github.com/roostorg/coop
1import { type HashBank as HashBankType } from '../services/hmaService/index.js';
2
3// Re-export the HashBank type for GraphQL generated types
4export type HashBank = HashBankType;
5
6// This file exists to provide the HashBank type import that GraphQL codegen expects
7// The actual HashBank functionality is implemented in the HMA service
8export default HashBank;