mirror of
https://github.com/Gongxh0901/kunpolibrary
synced 2025-08-05 06:48:42 +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;
|
||
|
|
||
|
}
|
||
|
}
|