Davide Tantillo 93c56d08d0 c3 backup
2025-11-03 15:16:29 +01:00

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;