Skip to content

SongData

This content is not available in your language yet.

type SongData =
| {
filePath: string;
origOrder: number;
type: "local";
}
| {
id: string;
origOrder: number;
songJsonData: string;
type: "custom";
};

Defined in: packages/react-full/src/states/dataAtoms.ts:5