osbtools
Version:
A set of tools for working with osu! storyboards
9 lines • 305 B
TypeScript
import { ESbElementType } from "../types/enums";
import StoryboardElement from "./storyboardElement";
declare class SbEmptyElement extends StoryboardElement {
type: ESbElementType;
constructor();
toString(): string;
}
export default SbEmptyElement;
//# sourceMappingURL=sbEmptyElement.d.ts.map