@lwc/style-compiler
Version:
Transform style sheet to be consumed by the LWC engine
9 lines • 315 B
TypeScript
import type { Message } from 'postcss';
interface ImportMessage extends Message {
type: 'import';
id: string;
}
export declare function importMessage(id: string): ImportMessage;
export declare function isImportMessage(message: any): message is ImportMessage;
export {};
//# sourceMappingURL=message.d.ts.map