PromucFlow_constructor/app/client/src/ce/constants/PackageConstants.ts
Valera Melnikov 9eac55a380
chore: add consistent-type-definitions rule (#27907)
## Description
Add consistent-type-definitions rule
2023-10-11 10:35:24 +03:00

16 lines
406 B
TypeScript

type ID = string;
export interface Package {
id: ID;
name: string; // Name of the package.
icon: string;
color: string;
workspaceId: ID; // ID of the workspace where the package is created.
description?: string; // Description that will show up in package installation section.
modifiedBy: string;
modifiedAt: string;
userPermissions: string[];
}
export type PackageMetadata = Package;