@lwc/style-compiler
Version:
Transform style sheet to be consumed by the LWC engine
10 lines • 404 B
TypeScript
import type { APIVersion } from '@lwc/shared';
import type { TransformCallback } from 'postcss';
import type { StyleCompilerCtx } from './utils/error-recovery';
export default function postCssLwcPlugin(options: {
scoped: boolean;
apiVersion: APIVersion;
disableSyntheticShadowSupport: boolean;
ctx: StyleCompilerCtx;
}): TransformCallback;
//# sourceMappingURL=postcss-lwc-plugin.d.ts.map