mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-21 01:06:43 +08:00
10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
|
|
declare namespace SDK.Lang {
|
|
function PushContext(str: string): void;
|
|
function PopContext(): void;
|
|
function Get(s: string): string;
|
|
}
|
|
|
|
// Global lang() method
|
|
declare function lang(s: string): string;
|