Export more types

This commit is contained in:
Jordan Eldredge 2025-02-18 21:47:45 -08:00
parent f5065235b7
commit 71600a9fca
2 changed files with 4 additions and 2 deletions

View file

@ -161,13 +161,13 @@ export type SkinData = {
};
// This is what we actually pass to butterchurn
type ButterchurnPresetJson = {
export type ButterchurnPresetJson = {
name: string;
butterchurnPresetObject: Object;
};
// A URL that points to a Butterchurn preset
interface ButterchurnPresetUrl {
export interface ButterchurnPresetUrl {
name: string;
butterchurnPresetUrl: string;
}

View file

@ -3,6 +3,8 @@ import * as musicMetadataBrowser from "music-metadata-browser";
import { Options } from "./types";
import WebampLazy, { PrivateOptions } from "./webampLazy";
export type * from "./types";
export default class Webamp extends WebampLazy {
constructor(options: Options & PrivateOptions) {
super({