* @zh 获取单例实例 * @en Get singleton instance
(config?: Partial<ProfilerConfig>)
| 59 | * @en Get singleton instance |
| 60 | */ |
| 61 | public static getInstance(config?: Partial<ProfilerConfig>): ProfilerSDK { |
| 62 | if (!ProfilerSDK._instance) { |
| 63 | ProfilerSDK._instance = new ProfilerSDK(config); |
| 64 | } |
| 65 | return ProfilerSDK._instance; |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * @zh 重置实例(测试用) |
no outgoing calls
no test coverage detected