feat: Add skeleton for Store module (#6506)
This commit is contained in:
@@ -23,3 +23,4 @@ export * as TransactionBaseTypes from "./transaction-base"
|
||||
export * as UserTypes from "./user"
|
||||
export * as WorkflowTypes from "./workflow"
|
||||
export * as ApiKeyTypes from "./api-key"
|
||||
export * as StoreTypes from "./store"
|
||||
|
||||
@@ -33,3 +33,4 @@ export * from "./transaction-base"
|
||||
export * from "./user"
|
||||
export * from "./workflow"
|
||||
export * from "./api-key"
|
||||
export * from "./store"
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
export * from "./store"
|
||||
@@ -0,0 +1,3 @@
|
||||
export interface StoreDTO {
|
||||
id: string
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
export * from "./common"
|
||||
export * from "./mutations"
|
||||
export * from "./service"
|
||||
@@ -0,0 +1 @@
|
||||
export * from "./store"
|
||||
@@ -0,0 +1 @@
|
||||
export interface CreateStoreDTO {}
|
||||
@@ -0,0 +1,3 @@
|
||||
import { IModuleService } from "../modules-sdk"
|
||||
|
||||
export interface IStoreModuleService extends IModuleService {}
|
||||
Reference in New Issue
Block a user