Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions app/client/src/ce/constants/ModuleConstants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ type ID = string;

export enum MODULE_TYPE {
QUERY = "QUERY_MODULE",
JS = "JS_MODULE",
UI = "UI_MODULE",
JS = "JS",
UI = "UI",
}

export interface ModuleInput {
Expand All @@ -17,8 +17,7 @@ export interface ModuleInputSection {
children?: ModuleInput[];
}

export interface Module
extends Pick<ModuleMetadata, "pluginId" | "pluginType" | "datasourceId"> {
export interface Module extends ModuleMetadata {
id: ID;
name: string;
packageId: ID;
Expand Down