UNPKG

osbtools

Version:

A set of tools for working with osu! storyboards

16 lines (12 loc) 314 B
import { ESbElementType } from "../types/enums"; import StoryboardElement from "./storyboardElement"; class SbEmptyElement extends StoryboardElement { type: ESbElementType = ESbElementType.Empty; constructor() { super({ path: "" }); } toString(): string { return ""; } } export default SbEmptyElement;