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 4289b72 commit 263984cCopy full SHA for 263984c
packages/svelte/types/index.d.ts
@@ -752,6 +752,8 @@ declare module 'svelte/compiler' {
752
code: string;
753
/** A source map */
754
map: SourceMap;
755
+ /** Whether or not the CSS includes global rules */
756
+ hasGlobal: boolean;
757
};
758
/**
759
* An array of warning objects that were generated during compilation. Each warning has several properties:
@@ -769,11 +771,6 @@ declare module 'svelte/compiler' {
769
771
* For `compileModule`, this is always `true`
770
772
*/
773
runes: boolean;
- /**
- * Whether the component contains a top level :global selector or not
774
- * For `compileModule`, this is always `true`
775
- */
776
- hasUnscopedGlobalCss: boolean;
777
778
/** The AST */
779
ast: any;
0 commit comments