We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
{ "variables": { "@override": true, "[variable_name]": { "type": "number", "default": 10 "expose": { "label": { "en": "Setting Label" }, "description": { "en": "description" } } } }, "style": { "wrapper": { "@override": false, "style": "asdf" } }, "render": { "type": "wrapper", "children": [ { "type": "Lyric", }, // ... ] } }
@override
interface BaseRenderElement<Type extends string> { type: Type; children?: RenderElement[]; } type WrapperRenderElement = BaseRenderElement<'wrapper'>; type LyricGroupRenderElement = // ... type LyricRenderElement = // ... type RenderElement = WrapperRenderElement | LyricGroupRenderElement | // ...;
The text was updated successfully, but these errors were encountered:
Su-Yong
No branches or pull requests
Structure
@override
: override fieldRender
The text was updated successfully, but these errors were encountered: