weapp-tailwindcss
Version:
把 tailwindcss 原子化样式思想,带给小程序开发者们! bring tailwindcss to miniprogram developers!
22 lines (21 loc) • 717 B
TypeScript
export interface SourceSideCssEntryOptions {
projectRoot?: string | undefined;
cwd?: string | undefined;
outputRoot?: string | undefined;
sourceFile?: string | undefined;
sourceCss?: string | undefined;
cssSources?: Array<{
file?: string | undefined;
}> | undefined;
cssEntries?: string[] | undefined;
}
export interface SourceSideCssEntrySource {
css: string;
config?: string | undefined;
configRequest?: string | undefined;
base: string;
file: string;
}
export declare function resolveSourceSideCssEntrySource(file: string, sourceOptions: SourceSideCssEntryOptions, resolveOptions?: {
removeConfig?: boolean;
}): SourceSideCssEntrySource | undefined;