( projectPath?: string | undefined | null | undefined, )
| 12 | } |
| 13 | |
| 14 | export function loadPiThemeState( |
| 15 | projectPath?: string | undefined | null | undefined, |
| 16 | ): Promise<PiThemeState> { |
| 17 | return invokeRuntimeHost('loadPiThemeState', { |
| 18 | projectPath: projectPath ?? null, |
| 19 | }) |
| 20 | } |
| 21 | |
| 22 | export async function updatePiSetting( |
| 23 | key: PiSettingsKey, |
no test coverage detected