dazscript-types
Version:
Daz Studio Scripting Types
19 lines (15 loc) • 495 B
TypeScript
/**
* Represents a Document Object Model (DOM) “Notation”.
* @docurl https://docs.daz3d.com/public/software/dazstudio/4/referenceguide/scripting/api_reference/object_index/domnotation_dz
*/
declare class DzDomNotation extends DzDomNode {
/* Properties */
/**
* Holds the public identifier of the notation. (Read Only)
*/
publicId: string; // String
/**
* Holds the system identifier of the notation. (Read Only)
*/
systemId: string; // String
}