Skip to content

Commit cc8abfe

Browse files
committed
Update types (26.0)
1 parent 3fcf5ea commit cc8abfe

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

AfterEffects/26.0/index.d.ts

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2344,6 +2344,9 @@ declare class Property<T extends UnknownPropertyType = UnknownPropertyType> exte
23442344
/** Current value of the property. */
23452345
readonly value: T["value"]
23462346

2347+
/** The text string of the currently-selected item in a dropdown menu property. */
2348+
readonly valueText: string
2349+
23472350
/** When true, there is a minimum permitted value. */
23482351
readonly hasMin: boolean
23492352

@@ -2383,6 +2386,9 @@ declare class Property<T extends UnknownPropertyType = UnknownPropertyType> exte
23832386
/** The position index of this property. */
23842387
readonly propertyIndex: number
23852388

2389+
/** All item strings in a dropdown menu property. */
2390+
readonly propertyParameters: string[]
2391+
23862392
/** When true, the property represents one of the separated dimensions for a multidimensional property. */
23872393
readonly isSeparationFollower: boolean
23882394

@@ -2643,11 +2649,14 @@ declare class PropertyGroup extends PropertyBase {
26432649
/** The number of indexed properties in the group. */
26442650
readonly numProperties: number
26452651

2652+
/** Adds a property to the group. */
2653+
addProperty(name: string): _PropertyClasses
2654+
26462655
/** Reports whether a property can be added to the group. */
26472656
canAddProperty(name: string): boolean
26482657

2649-
/** Adds a property to the group. */
2650-
addProperty(name: string): _PropertyClasses
2658+
/** Adds a variable font axis property to this group. */
2659+
addVariableFontAxis(axisTag: string): OneDProperty
26512660
}
26522661

26532662
/** The RenderQueue object represents the render automation process, the data and functionality that is available through the Render Queue panel of a particular After Effects project. Attributes provide access to items in the render queue and their render status. Methods can start, pause, and stop the rendering process. */

0 commit comments

Comments
 (0)