ब्लॉकली > blockRendering > DynamicShape
ब्लॉक रेंडरिंग.डाइनैमिक शेप का टाइप
एक ऑब्जेक्ट, जिसमें किसी डाइनैमिक शेप के बारे में साइज़ और टाइप की जानकारी होती है.
हस्ताक्षर:
export type DynamicShape = {
type: number;
width: (p1: number) => number;
height: (p1: number) => number;
isDynamic: true;
connectionOffsetY: (p1: number) => number;
connectionOffsetX: (p1: number) => number;
pathDown: (p1: number) => string;
pathUp: (p1: number) => string;
pathRightDown: (p1: number) => string;
pathRightUp: (p1: number) => string;
};