[Assets] Move to use Indexable type

This commit is contained in:
Beef 2023-01-07 23:06:36 +00:00
parent 4104d637f1
commit de3d422754
2 changed files with 3 additions and 7 deletions

View file

@ -1,8 +1,8 @@
import { Asset, Assets } from "@types";
import { Asset, Indexable, } from "@types";
import { after } from "@lib/patcher";
import { assets } from "@metro/common";
export const all: Assets = {};
export const all: Indexable<Asset> = {};
export default function patchAssets() {
try {