Skip to content
Merged
Changes from 1 commit
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
6 changes: 3 additions & 3 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",
UI = "UI",
JS = "JS_MODULE",
UI = "UI_MODULE",
Comment thread
ashit-rath marked this conversation as resolved.
}

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

export interface Module extends ModuleMetadata {
export interface Module {
id: ID;
name: string;
packageId: ID;
Expand Down