Mirror of https://github.com/roostorg/coop github.com/roostorg/coop
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 8 lines 360 B view raw
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;