mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-23 18:17:38 +00:00
12 lines
298 B
TypeScript
12 lines
298 B
TypeScript
import { ButterchurnOptions } from "../../types";
|
|
|
|
async function loadConvertPreset() {
|
|
const { convertPreset } =
|
|
// prettier-ignore
|
|
await import(
|
|
/* webpackChunkName: "milkdrop-preset-converter" */
|
|
// @ts-ignore
|
|
"milkdrop-preset-converter-aws"
|
|
);
|
|
return convertPreset;
|
|
}
|