mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
10 lines
335 B
TypeScript
10 lines
335 B
TypeScript
|
|
/** Represents the SVG Picture object.
|
|
* @see {@link https://www.construct.net/make-games/manuals/construct-3/scripting/scripting-reference/plugin-interfaces/svg-picture | ISVGPictureInstance documentation } */
|
|
declare class ISVGPictureInstance extends IWorldInstance
|
|
{
|
|
svgUrl: string;
|
|
|
|
setSvgUrl(url: string): Promise<void>;
|
|
}
|