mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-17 08:47:49 +00:00
11 lines
237 B
TypeScript
11 lines
237 B
TypeScript
import library from './library';
|
|
let patches: Function[] = [];
|
|
|
|
export function deinitFilepickerPatches() {
|
|
patches.forEach((unpatch) => unpatch());
|
|
}
|
|
|
|
export async function initFilepickerPatches() {
|
|
patches.push(await library());
|
|
}
|