@mintlify/common
Version:
Commonly shared code within Mintlify
9 lines (8 loc) • 319 B
TypeScript
/** Get generated TailwindCSS from the content with prefix added to each class */
export declare function getDynamicTailwindCss({ content, prefix, }: {
content: string;
prefix?: string;
}): Promise<string>;
export declare function getTailwindSelectors({ content }: {
content: string;
}): Promise<string[]>;