We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed115c1 commit 17dd398Copy full SHA for 17dd398
1 file changed
packages/builder-config/framework-vanilla/index.ts
@@ -1,10 +1,13 @@
1
import { Language } from "@grida/builder-platform-types";
2
import { ComponentOutput } from "../output";
3
import type { WebImgAltConfig } from "../platform-web/web-img-alt";
4
+import type { WebAdditionalCssDeclarationConfig } from "../platform-web/additional-css-declaration";
5
+
6
export interface VanillaComponentOutput extends ComponentOutput {}
7
8
export interface VanillaFrameworkConfig {
9
framework: "vanilla";
10
language: Language.html;
11
imgage_alt: WebImgAltConfig;
12
+ additional_css_declaration?: WebAdditionalCssDeclarationConfig;
13
}
0 commit comments