16 lines
406 B
TypeScript
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;
|