UNPKG

@ioris/core

Version:

This package provides the core functionality for the [@ioris](https://www.npmjs.com/search?q=%40ioris) ecosystem for managing music lyrics with time synchronization.

10 lines (9 loc) 232 B
import type { Char } from "../types"; export type CreateCharArgs = { wordID: string; position: number; text: string; begin: number; end: number; }; export declare function createChar(args: CreateCharArgs): Char;