mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-18 00:55:54 +00:00
Export more types
This commit is contained in:
parent
f5065235b7
commit
71600a9fca
2 changed files with 4 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue