Skip to main content

OpenProjectData

interface OpenProjectData
{
data: Uint8Array;
name: string;
id: string;
readOnly: boolean;
}

Properties

Parameters

NameTypeDescription
dataUint8ArrayBinary representation of the project file
namestringName of the project
idstringUnique identifier for the project
readOnlybooleanWhen set to true, the application prevents any modifications to the project

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.