mirror of
https://github.com/Gongxh0901/kunpolibrary
synced 2025-08-02 21:38:41 +00:00
17 lines
287 B
TypeScript
17 lines
287 B
TypeScript
/**
|
|
* @Author: Gongxh
|
|
* @Date: 2025-03-21
|
|
* @Description:
|
|
*/
|
|
|
|
declare namespace KunpoSDK {
|
|
class SDKHelper {
|
|
static getInstance(): SDKHelper;
|
|
|
|
public getSystemInfo(): void;
|
|
public getVersionCode(): string;
|
|
public getBuildCode(): number;
|
|
|
|
}
|
|
}
|