Options
All
  • Public
  • Public/Protected
  • All
Menu

TG Sticker Creator Documentation

Index

Type Aliases

CancellableCallback<T>: ((item: T, cancel: (() => void), parents: LottieItem[]) => void)

Type Parameters

  • T

Type declaration

    • (item: T, cancel: (() => void), parents: LottieItem[]): void
    • Parameters

      • item: T
      • cancel: (() => void)
          • (): void
          • Returns void

      • parents: LottieItem[]

      Returns void

Coordinate: [number, number]

[x, y]

Either a predefined easing name or a custom bezier easing encoded as array: [x1, y1, x2, y2]

EasingArray: [number, number, number, number]
EasingName: "linear" | "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInSine" | "easeOutSine" | "easeInOutSine" | "easeInQuad" | "easeOutQuad" | "easeInOutQuad" | "easeInCubic" | "easeOutCubic" | "easeInOutCubic" | "easeInQuart" | "easeOutQuart" | "easeInOutQuart" | "easeInQuint" | "easeOutQuint" | "easeInOutQuint" | "easeInExpo" | "easeOutExpo" | "easeInOutExpo" | "easeInCirc" | "easeOutCirc" | "easeInOutCirc" | "easeInBack" | "easeOutBack" | "easeInOutBack" | "easeFastOutSlowIn" | "easeFastOutLinearIn" | "easeLinearOutSlowIn"

Easing presets collected from https://github.com/ai/easings.net/blob/master/src/easings.yml, MDN and Chrome DevTools

JsonArray: JsonValue[]

object without any non-serializable values

JsonObject: {}

object without any non-serializable values

Type declaration

JsonValue: string | number | boolean | JsonObject | JsonArray | undefined | null

object without any non-serializable values

RandomizableValue: number | { max: number; min: number }

Exact value or range

Variables

create: { animatablePath: { (path: Path): AnimatablePath; (inPoints: Coordinate[], outPoints: Coordinate[], vertices: Coordinate[], closed: boolean): AnimatablePath }; animation: { blink: (<T, C>(animatable: T, __namedParameters: C) => T); particles: ((shape: Shape, options: Partial<ParticleAnimationOptions>) => GroupShape) }; color: { (red: number, green: number, blue: number, alpha: number): AnimatableColor; (colorNameOrHexValue: string): AnimatableColor; (rgba: RgbaValue): AnimatableColor }; gradient: ((stops: RgbaStopValue[]) => AnimatableGradient); value: { (value: number | [number]): Animatable1DValue; (value: Coordinate): Animatable2DValue; (x: number, y: number): AnimatablePosition }; compLayer: any; ellipse: any; fill: any; gradientFill: any; gradientStroke: any; group: any; layerTransform: any; mask: any; merge: any; nullLayer: any; path: any; pathValue: any; preComp: any; rect: any; repeater: any; rgba: any; roundedCorners: any; shapeLayer: any; solidLayer: any; star: any; sticker: any; stickerFromPlain: any; stickerFromTgs: any; stop: any; stroke: any; transform: any; trim: any } = ...

Type declaration

easings: { [ name in EasingName]: EasingArray } = ...

Easings

Bezier handles encoded as [x1, y1, x2, y2] - the same as cubic-bezier(x1, y1, x2, y2) in css

enums: { BlendMode: typeof BlendMode; FillRule: typeof FillRule; GradientType: typeof GradientType; LayerType: typeof LayerType; LineCap: typeof LineCap; LineJoin: typeof LineJoin; MaskMode: typeof MaskMode; MatteMode: typeof MatteMode; MergeMode: typeof MergeMode; ShapeType: typeof ShapeType; StarType: typeof StarType; TrimMultiple: typeof TrimMultiple } = ...

All enums as single variable for easier importing

Type declaration

Functions

Generated using TypeDoc