github.com/Finschia/finschia-sdk@v0.48.1/store/reexport.go (about) 1 package store 2 3 import ( 4 "github.com/Finschia/finschia-sdk/store/types" 5 ) 6 7 // Import cosmos-sdk/types/store.go for convenience. 8 type ( 9 PruningOptions = types.PruningOptions 10 Store = types.Store 11 Committer = types.Committer 12 CommitStore = types.CommitStore 13 MultiStore = types.MultiStore 14 CacheMultiStore = types.CacheMultiStore 15 CommitMultiStore = types.CommitMultiStore 16 KVStore = types.KVStore 17 KVPair = types.KVPair 18 Iterator = types.Iterator 19 CacheKVStore = types.CacheKVStore 20 CommitKVStore = types.CommitKVStore 21 CacheWrapper = types.CacheWrapper 22 CacheWrap = types.CacheWrap 23 CommitID = types.CommitID 24 Key = types.StoreKey 25 Type = types.StoreType 26 Queryable = types.Queryable 27 TraceContext = types.TraceContext 28 Gas = types.Gas 29 GasMeter = types.GasMeter 30 GasConfig = types.GasConfig 31 )