Skip to content

Commit 2478c38

Browse files
Add better docs to Reshape (#370)
* Add better docs to Reshape
1 parent 56f155a commit 2478c38

File tree

20 files changed

+103
-25
lines changed

20 files changed

+103
-25
lines changed

src/actions/delivery/DeliveryAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {Qualifier} from "../../internal/qualifier/Qualifier";
55
/**
66
* @description Qualifies the delivery of an asset.
77
* @memberOf Actions.Delivery
8-
* @extends {SDK.Action}
8+
* @extends SDK.Action
99
*/
1010
class DeliveryAction extends Action {
1111

src/actions/delivery/DeliveryColorSpaceFromICC.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {Qualifier} from "../../internal/qualifier/Qualifier";
66
/**
77
* @description Specifies the ICC profile to use for the color space.
88
* @memberOf Actions.Delivery
9-
* @extends {SDK.Action}
9+
* @extends SDK.Action
1010
* @see Visit {@link Actions.Delivery|Delivery} for an example
1111
*/
1212
class DeliveryColorSpaceFromICC extends Action {

src/actions/effect/EffectActions/SimpleEffectAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {ExpressionQualifier} from "../../../qualifiers/expression/ExpressionQual
55

66
/**
77
* @description A class that defines a simple effect of the type e_{effectName}
8-
* @extends {SDK.Action}
8+
* @extends SDK.Action
99
* @memberOf Actions.Effect
1010
* @see Visit {@link Actions.Effect|Effect} for an example
1111
*/

src/actions/effect/blur/blur.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {Action} from "../../../internal/Action";
44

55
/**
66
* @description The Action class of the blur Builder.
7-
* @extends {SDK.Action}
7+
* @extends SDK.Action
88
* @memberOf Actions.Effect
99
* @see Visit {@link Actions.Effect|Effect} for an example
1010
*/

src/actions/effect/pixelate/pixelate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {Action} from "../../../internal/Action";
44

55
/**
66
* @description The Action class of the pixelate Builder
7-
* @extends {SDK.Action}
7+
* @extends SDK.Action
88
* @memberOf Actions.Effect
99
* @see Visit {@link Actions.Effect|Effect} for an example
1010
*/

src/actions/layer/LayerAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {BaseSource} from "../../qualifiers/source/BaseSource";
88

99

1010
/**
11-
* @extends {SDK.Action}
11+
* @extends SDK.Action
1212
* @memberOf SDK
1313
* @description
1414
* A generic Layer action that can add a Video, Text or Image layer.<br>

src/actions/namedTransformation/NamedTransformationAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {Qualifier} from "../../internal/qualifier/Qualifier";
33

44
/**
55
* @description Applies a pre-defined named transformation of the given name, used with a builder from {@link Actions.NamedTransformation|Named Transformation}
6-
* @extends {SDK.Action}
6+
* @extends SDK.Action
77
* @memberOf Actions.NamedTransformation
88
* @see Visit {@link Actions.NamedTransformation|Named Transformation} for an example
99
*/

src/actions/psdTools/ClipAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {clip, clipEvenOdd} from "../../qualifiers/flag";
55

66
/**
77
* @description Defines the clipping path to use when trimming pixels.
8-
* @extends {SDK.Action}
8+
* @extends SDK.Action
99
* @memberOf Actions.PSDTools
1010
* @see Visit {@link Actions.PSDTools| PSDTools} for an example
1111
*/

src/actions/psdTools/GetLayerAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {QualifierValue} from "../../internal/qualifier/QualifierValue";
55
/**
66
* @description Represents a layer in a Photoshop document.
77
* </br><b>Learn more:</b> {@link https://cloudinary.com/documentation/paged_and_layered_media#deliver_selected_layers_of_a_psd_image | Deliver selected layers of a PSD image}
8-
* @extends {SDK.Action}
8+
* @extends SDK.Action
99
* @memberOf Actions.PSDTools
1010
* @see Visit {@link Actions.PSDTools| PSDTools} for an example
1111
*/

src/actions/psdTools/SmartObjectAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {QualifierValue} from "../../internal/qualifier/QualifierValue";
55
/**
66
* @description Represents an embedded smart object in a Photoshop document.
77
* </br><b>Learn more:</b> {@link https://cloudinary.com/documentation/paged_and_layered_media#extract_the_original_content_of_an_embedded_object | Extract the original content of an embedded Photoshop object}
8-
* @extends {SDK.Action}
8+
* @extends SDK.Action
99
* @memberOf Actions.PSDTools
1010
* @see Visit {@link Actions.PSDTools| PSDTools} for an example
1111
*/

0 commit comments

Comments
 (0)