Files
decky-loader/frontend/src/components/modals/filepicker/patches/index.ts
T

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());
}