searches the current version of every section · esc to close

27.06 Artifact Mold

#todo

interface ArtifactAttachments {
	mold: MoldAttachment[], // OPTIONAL
	// ...
}
type MoldAttachment = {
    name: string; // REQUIRED
    cast: MoldCast; // REQUIRED
};
type MoldCast = {
    js?: string; // OPTIONAL
    system?: string; // OPTIONAL
    // ...
};