weapp-tailwindcss
Version:
把 tailwindcss 原子化样式思想,带给小程序开发者们! bring tailwindcss to miniprogram developers!
10 lines (9 loc) • 344 B
TypeScript
import type { BundleSnapshot } from '../bundle-state.js';
interface LogBundleProcessPlanOptions {
debug: (format: string, ...args: unknown[]) => void;
snapshot: BundleSnapshot;
useIncrementalMode: boolean;
iteration: number;
}
export declare function logBundleProcessPlan(options: LogBundleProcessPlanOptions): void;
export {};