OpenProjectData
interface OpenProjectData
{
data: Uint8Array;
name: string;
id: string;
readOnly: boolean;
}
Properties
Description
The OpenProjectData interface defines the structure for project data when opening or loading a project. It contains the binary representation of the project file along with metadata such as the project name, unique identifier, and access permissions. The readOnly flag is particularly important for controlling whether users can modify the project contents.