mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-21 17:26:45 +08:00
8 lines
294 B
TypeScript
8 lines
294 B
TypeScript
|
|
/** Represents an actively running timeline.
|
|
* @see {@link https://www.construct.net/make-games/manuals/construct-3/scripting/scripting-reference/interfaces/itimelinestate | ITimelineState documentation } */
|
|
declare class ITimelineState extends ITimelineStateBase
|
|
{
|
|
readonly name: string;
|
|
}
|